mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-18 16:37:13 +01:00
[SF 2445467] Bug in Thread_WIN32.cpp
This commit is contained in:
parent
8311cd078a
commit
600161cbf3
@ -117,7 +117,7 @@ void ThreadImpl::createImpl(Entry ent, void* pData)
|
||||
_thread = CreateThread(NULL, _stackSize, ent, pData, 0, &threadId);
|
||||
#else
|
||||
unsigned threadId;
|
||||
_thread = (HANDLE) _beginthreadex(NULL, _stackSize, runnableEntry, this, 0, &threadId);
|
||||
_thread = (HANDLE) _beginthreadex(NULL, _stackSize, ent, this, 0, &threadId);
|
||||
#endif
|
||||
if (!_thread)
|
||||
throw SystemException("cannot create thread");
|
||||
|
Loading…
x
Reference in New Issue
Block a user