is boost::property_tree::ptree thread safe?

   引入boost::property_tree::ptree解析json时,在多线程情况下经常crash。 最后在stackoverflow中找到答案。

    在ptree下层使用的spirit库默认不是线程安全的。 需要加一个

#define BOOST_SPIRIT_THREADSAFE

此宏定义需要写在#include <boost/property_tree/ptree.hpp>之前。


在stackoverflow上相关的问题描述链接:

http://stackoverflow.com/questions/14140243/concurrency-problems-wih-boost-property-tree

http://stackoverflow.com/questions/8156948/is-boostproperty-treeptree-thread-safe

你可能感兴趣的:(线程安全,Crash,read_json)