diff options
author | Mattes D <github@xoft.cz> | 2014-12-25 00:34:54 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-12-25 00:34:54 +0100 |
commit | 081e7ddd028d9382bd52c2b117dae6b6f84225e5 (patch) | |
tree | 6e2564eaee74ab2615bb0c1b6925498da183ee97 /src/OSSupport/IsThread.cpp | |
parent | Merge pull request #1686 from mc-server/PlaceBlockRefactor (diff) | |
download | cuberite-081e7ddd028d9382bd52c2b117dae6b6f84225e5.tar cuberite-081e7ddd028d9382bd52c2b117dae6b6f84225e5.tar.gz cuberite-081e7ddd028d9382bd52c2b117dae6b6f84225e5.tar.bz2 cuberite-081e7ddd028d9382bd52c2b117dae6b6f84225e5.tar.lz cuberite-081e7ddd028d9382bd52c2b117dae6b6f84225e5.tar.xz cuberite-081e7ddd028d9382bd52c2b117dae6b6f84225e5.tar.zst cuberite-081e7ddd028d9382bd52c2b117dae6b6f84225e5.zip |
Diffstat (limited to 'src/OSSupport/IsThread.cpp')
-rw-r--r-- | src/OSSupport/IsThread.cpp | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/src/OSSupport/IsThread.cpp b/src/OSSupport/IsThread.cpp index 94bed1f56..55e96b622 100644 --- a/src/OSSupport/IsThread.cpp +++ b/src/OSSupport/IsThread.cpp @@ -68,11 +68,22 @@ cIsThread::~cIsThread() +void cIsThread::DoExecute(void) +{ + m_evtStart.Wait(); + Execute(); +} + + + + + bool cIsThread::Start(void) { try { - m_Thread = std::thread(&cIsThread::Execute, this); + // Initialize the thread: + m_Thread = std::thread(&cIsThread::DoExecute, this); #if defined (_MSC_VER) && defined(_DEBUG) if (!m_ThreadName.empty()) @@ -81,9 +92,12 @@ bool cIsThread::Start(void) } #endif + // Notify the thread that initialization is complete and it can run its code safely: + m_evtStart.Set(); + return true; } - catch (std::system_error & a_Exception) + catch (const std::system_error & a_Exception) { LOGERROR("cIsThread::Start error %i: could not construct thread %s; %s", a_Exception.code().value(), m_ThreadName.c_str(), a_Exception.code().message().c_str()); return false; |