id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 10379,"boost::log, extending sources, race-condition",Sorin Manolache ,Andrey Semashev,"Hello, I'm using the example for extending boost::log sources found here: http://www.boost.org/doc/libs/1_56_0/libs/log/example/doc/extension_record_tagger.cpp I've modified it in order to use the same logger in two threads. I've added a thread-main function: {{{ static void thr_main(my_logger& logger, unsigned int id, std::string const& msg, unsigned int iterations) { for (unsigned int i = 0; i < iterations; ++i) LOG_WITH_TAG(logger, normal, ""GUI"") << id << '\t' << msg; } }}} I'm running the two threads from main: {{{ int main(int, char*[]) { init(); my_logger logger; boost::thread th1(boost::bind(&thr_main, boost::ref(logger), 0, ""abc"", 100000)); boost::thread th2(boost::bind(&thr_main, boost::ref(logger), 1, ""xyz"", 100000)); th1.join(); th2.join(); return 0; } }}} I'm using Linux 3.14.1 on an x86_64 architecture, g++ 4.9.1, libc 2.19. The compile/link command is: {{{ g++ -DBOOST_LOG_DYN_LINK -Wall -std=c++11 -O0 -fno-inline -g -o example example.cc -lboost_log -lboost_log_setup -lboost_thread -lboost_system -pthread }}} I get segfaults every time. gdb says: {{{ Program terminated with signal SIGSEGV, Segmentation fault. #0 0x00007f0f7f5efc3e in boost::log::v2_mt_posix::attribute_set::insert(boost::log::v2_mt_posix::attribute_name, boost::log::v2_mt_posix::attribute const&) () from /usr/lib/x86_64-linux-gnu/libboost_log.so.1.55.0 (gdb) thread apply all bt Thread 2 (Thread 0x7f0f7d792700 (LWP 32726)): #0 0x00007f0f7e042c75 in ?? () from /lib/x86_64-linux-gnu/libc.so.6 #1 0x00007f0f7e043821 in ?? () from /lib/x86_64-linux-gnu/libc.so.6 #2 0x00007f0f7f5f0740 in boost::log::v2_mt_posix::attribute_value_set::~attribute_value_set() () from /usr/lib/x86_64-linux-gnu/libboost_log.so.1.55.0 #3 0x00007f0f7f5f3419 in boost::log::v2_mt_posix::record_view::public_data::destroy(boost::log::v2_mt_posix::record_view::public_data const*) () from /usr/lib/x86_64-linux-gnu/libboost_log.so.1.55.0 #4 0x00007f0f7f5f3e90 in boost::log::v2_mt_posix::core::push_record_move(boost::log::v2_mt_posix::record&) () from /usr/lib/x86_64-linux-gnu/libboost_log.so.1.55.0 #5 0x000000000041bb8f in push_record (rec=, this=0x127b2c0) at /usr/include/boost/log/core/core.hpp:308 #6 boost::log::v2_mt_posix::sources::basic_logger, boost::log::v2_mt_posix::sources::single_thread_model>::push_record_unlocked(boost::log::v2_mt_posix::record&&) (this=0x7fff82b62cf0, rec=) at /usr/include/boost/log/sources/basic_logger.hpp:267 #7 0x000000000041928c in boost::log::v2_mt_posix::sources::basic_composite_logger, boost::log::v2_mt_posix::sources::single_thread_model, boost::log::v2_mt_posix::sources::features, record_tagger> >::push_record(boost::log::v2_mt_posix::record&&) (this=0x7fff82b62cf0, rec=) at /usr/include/boost/log/sources/basic_logger.hpp:581 #8 0x0000000000419308 in boost::log::v2_mt_posix::aux::record_pump >::~record_pump (this=0x7f0f7d791dd0, __in_chrg=) at /usr/include/boost/log/sources/record_ostream.hpp:279 #9 0x0000000000413fd3 in thr_main (logger=..., id=0, msg=""abc"", iterations=100000) at example.cc:245 Thread 1 (Thread 0x7f0f7cf91700 (LWP 32727)): #0 0x00007f0f7f5efc3e in boost::log::v2_mt_posix::attribute_set::insert(boost::log::v2_mt_posix::attribute_name, boost::log::v2_mt_posix::attribute const&) () from /usr/lib/x86_64-linux-gnu/libboost_log.so.1.55.0 #1 0x000000000041d6b2 in boost::log::v2_mt_posix::sources::basic_logger, boost::log::v2_mt_posix::sources::single_thread_model>::add_attribute_unlocked (this=0x7fff82b62cf0, name=..., attr=...) at /usr/include/boost/log/sources/basic_logger.hpp:227 #2 0x000000000041d902 in record_tagger_feature, boost::log::v2_mt_posix::sources::single_thread_model> >::open_record_unlocked, boost::parameter::aux::arg_list, boost::parameter::aux::empty_arg_list> > > (this=0x7fff82b62cf0, args=...) at example.cc:127 #3 0x000000000041b850 in boost::log::v2_mt_posix::sources::basic_severity_logger, boost::log::v2_mt_posix::sources::single_thread_model> >, severity_level>::open_record_unlocked, boost::parameter::aux::arg_list, boost::parameter::aux::empty_arg_list> > > (this=0x7fff82b62cf0, args=...) at /usr/include/boost/log/sources/severity_feature.hpp:253 #4 0x000000000041912d in boost::log::v2_mt_posix::sources::basic_composite_logger, boost::log::v2_mt_posix::sources::single_thread_model, boost::log::v2_mt_posix::sources::features, record_tagger> >::open_record, boost::parameter::aux::arg_list, boost::parameter::aux::empty_arg_list> > > ( this=0x7fff82b62cf0, args=...) at /usr/include/boost/log/sources/basic_logger.hpp:575 #5 0x0000000000413f68 in thr_main (logger=..., id=1, msg=""xyz"", iterations=100000) at example.cc:245 }}} ",Bugs,closed,To Be Determined,log,Boost 1.55.0,Problem,invalid,"extending sources, race-condition",