标签:style http color io os 使用 ar for sp
引入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
is boost::property_tree::ptree thread safe?
标签:style http color io os 使用 ar for sp
原文地址:http://my.oschina.net/mjRao/blog/330490