| 21 | |
| 22 | |
| 23 | {{{ |
| 24 | svn diff libs/thread/src/win32/thread.cpp |
| 25 | Index: libs/thread/src/win32/thread.cpp |
| 26 | =================================================================== |
| 27 | --- libs/thread/src/win32/thread.cpp (revision 85677) |
| 28 | +++ libs/thread/src/win32/thread.cpp (working copy) |
| 29 | @@ -279,6 +279,12 @@ |
| 30 | interruption_enabled=false; |
| 31 | #endif |
| 32 | } |
| 33 | + ~externally_launched_thread() { |
| 34 | + BOOST_ASSERT(notify.empty()); |
| 35 | + notify.clear(); |
| 36 | + BOOST_ASSERT(async_states_.empty()); |
| 37 | + async_states_.clear(); |
| 38 | + } |
| 39 | }}} |
| 40 | |
| 41 | |