summaryrefslogtreecommitdiff
path: root/src/threadengines/threadengine_win32.cpp
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-06-24 12:45:21 +0200
committerAttila Molnar <attilamolnar@hush.com>2014-06-24 12:45:21 +0200
commit36b9b4b39900d1b2e3b182e1b50370b0c9dcb9ae (patch)
tree0d6f84597c4e103647de04eea4eb0c21ce6ef9c2 /src/threadengines/threadengine_win32.cpp
parentaa7df4b8234d4b601ad0310605181fdabc8cfcaa (diff)
Change allocation of ThreadData to be physically part of the object containing it
Diffstat (limited to 'src/threadengines/threadengine_win32.cpp')
-rw-r--r--src/threadengines/threadengine_win32.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/threadengines/threadengine_win32.cpp b/src/threadengines/threadengine_win32.cpp
index 77f638f37..3376f937a 100644
--- a/src/threadengines/threadengine_win32.cpp
+++ b/src/threadengines/threadengine_win32.cpp
@@ -23,17 +23,12 @@
void ThreadEngine::Start(Thread* thread)
{
- ThreadData* data = new ThreadData;
- thread->state = data;
-
DWORD ThreadId = 0;
- data->handle = CreateThread(NULL,0,ThreadEngine::Entry,thread,0,&ThreadId);
+ thread->state.handle = CreateThread(NULL, 0, ThreadEngine::Entry, thread, 0, &ThreadId);
- if (data->handle == NULL)
+ if (thread->state.handle == NULL)
{
DWORD lasterr = GetLastError();
- thread->state = NULL;
- delete data;
std::string err = "Unable to create new thread: " + ConvToStr(lasterr);
SetLastError(ERROR_SUCCESS);
throw CoreException(err);