Ticket #8530: boost-pthread-data.patch

File boost-pthread-data.patch, 597 bytes (added by Dan Kegel <dank@…>, 9 years ago)

Draft patch to initialize the affected member variables

  • boost/thread/pthread/thread_data.hpp

     
    132132            bool interrupt_requested;
    133133//#endif
    134134            thread_data_base():
     135                thread_handle(0),
    135136                done(false),join_started(false),joined(false),
    136137                thread_exit_callbacks(0),
     138                cond_mutex(0),
    137139                current_cond(0),
    138140                notify(),
    139141                async_states_()