X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fthreadengines%2Fthreadengine_win32.cpp;h=529e24a294c30fe5cb00956f9f17529f7a5d3834;hb=5cc9614e73a783dec7a8e0887a0435cf577eaad4;hp=3e643c6f5aec175ec8102379d2b59f70073f23a4;hpb=553a8da754c8cd308bad2008018849714e70f9b7;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/threadengines/threadengine_win32.cpp b/src/threadengines/threadengine_win32.cpp index 3e643c6f5..529e24a29 100644 --- a/src/threadengines/threadengine_win32.cpp +++ b/src/threadengines/threadengine_win32.cpp @@ -37,7 +37,16 @@ void ThreadEngine::Start(Thread* thread) { thread->state = NULL; delete data; - throw CoreException(std::string("Unable to create new thread: ") + dlerror()); + std::string err = "Unable to create new thread: "; +#ifdef _WIN32 + CHAR errdetail[100]; + FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM, 0, GetLastError(), MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), errdetail, 100, 0); + SetLastError(ERROR_SUCCESS); + err += errdetail; +#else + err += dlerror(); +#endif + throw CoreException(err); } } @@ -56,6 +65,7 @@ void ThreadData::FreeThread(Thread* thread) { thread->SetExitFlag(); WaitForSingleObject(handle,INFINITE); + CloseHandle(handle); } class ThreadSignalSocket : public BufferedSocket