Core: Thread fix (thread_id issue)

git-svn-id: svn://ultimatepp.org/upp/trunk@2997 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2011-01-13 19:28:39 +00:00
parent 7f61cd2564
commit 6e7ebec266

View file

@ -27,7 +27,6 @@ Thread::Thread()
#endif
#ifdef PLATFORM_POSIX
handle = 0;
thread_id = 0;
#endif
}
@ -43,7 +42,6 @@ void Thread::Detach()
if(handle) {
CHECK(!pthread_detach(handle));
handle = 0;
thread_id = 0;
}
#endif
}