From b8c8b250b1b94e598bb8e3862a04afbf4d3edddb Mon Sep 17 00:00:00 2001 From: Roland Schwarz Date: Tue, 26 Sep 2006 03:05:06 +0000 Subject: [PATCH] Removed try catch(...) from thread proxy [SVN r35328] --- src/thread.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/thread.cpp b/src/thread.cpp index 3ac10182..67d5870c 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -100,8 +100,8 @@ extern "C" { static OSStatus thread_proxy(void* param) #endif { - try - { + //try + //{ thread_param* p = static_cast(param); boost::function0 threadfunc = p->m_threadfunc; p->started(); @@ -109,13 +109,13 @@ extern "C" { #if defined(BOOST_HAS_WINTHREADS) on_thread_exit(); #endif - } - catch (...) - { + //} + //catch (...) + //{ #if defined(BOOST_HAS_WINTHREADS) - on_thread_exit(); + // on_thread_exit(); #endif - } + //} #if defined(BOOST_HAS_MPTASKS) ::boost::detail::thread_cleanup(); #endif