(svn r13417) -Fix (r12945, r13413): freeing the ThreadObjects in a manner that hopefully doesn't cause crashes.

This commit is contained in:
rubidium
2008-06-08 15:27:57 +00:00
parent b830e6c714
commit f80d8dbe0c
9 changed files with 36 additions and 51 deletions

View File

@@ -32,7 +32,7 @@ public:
{
this->m_sem = ThreadSemaphore::New();
/* Create a thread and start stFiberProc */
this->m_thread = ThreadObject::New(&stFiberProc, this, NULL);
this->m_thread = ThreadObject::New(&stFiberProc, this);
}
/**