From 4bc70444a4b0ea2bbddd550fce7ff99cf6d05128 Mon Sep 17 00:00:00 2001 From: "Vicente J. Botet Escriba" Date: Tue, 17 Sep 2013 21:17:02 +0000 Subject: [PATCH] Thread: try to fix SIGSEGV on win32 issue #7666. [SVN r85734] --- src/win32/thread.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/win32/thread.cpp b/src/win32/thread.cpp index 8d8e3e2b..22ddf7d8 100644 --- a/src/win32/thread.cpp +++ b/src/win32/thread.cpp @@ -279,12 +279,12 @@ namespace boost interruption_enabled=false; #endif } -// ~externally_launched_thread() { -// BOOST_ASSERT(notify.empty()); -// notify.clear(); -// BOOST_ASSERT(async_states_.empty()); -// async_states_.clear(); -// } + ~externally_launched_thread() { + BOOST_ASSERT(notify.empty()); + notify.clear(); + BOOST_ASSERT(async_states_.empty()); + async_states_.clear(); + } void run() {}