2
0
mirror of https://github.com/boostorg/thread.git synced 2026-02-08 11:12:23 +00:00

Fix typos.

[SVN r23913]
This commit is contained in:
Michael Glassford
2004-07-21 20:43:54 +00:00
parent d29dae72de
commit 9797a93d86

View File

@@ -31,7 +31,7 @@
#include "timeconv.inl"
#if defined(BOOST_HAS_WIN_THREAD) && defined(BOOST_THREAD_BUILD_LIB)
#if defined(BOOST_HAS_WINTHREADS) && defined(BOOST_THREAD_BUILD_LIB)
# include "boost/thread/detail/threadmon.hpp"
#endif
@@ -111,13 +111,13 @@ extern "C" {
boost::function0<void> threadfunc = p->m_threadfunc;
p->started();
threadfunc();
#if defined(BOOST_HAS_WIN_THREAD) && defined(BOOST_THREAD_BUILD_LIB)
#if defined(BOOST_HAS_WINTHREADS) && defined(BOOST_THREAD_BUILD_LIB)
on_thread_exit();
#endif
}
catch (...)
{
#if defined(BOOST_HAS_WIN_THREAD) && defined(BOOST_THREAD_BUILD_LIB)
#if defined(BOOST_HAS_WINTHREADS) && defined(BOOST_THREAD_BUILD_LIB)
on_thread_exit();
#endif
}