Refactor and cleanup the AMBuildScript a bit.

This commit is contained in:
David Anderson
2015-10-08 14:55:53 -07:00
parent 121124e362
commit 6c5ab80418
4 changed files with 134 additions and 121 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ IThreadHandle *PosixThreader::MakeThread(IThread *pThread, const ThreadParams *p
ke::AutoPtr<ThreadHandle> pHandle(new ThreadHandle(this, pThread, params));
pHandle->m_thread = new ke::Thread(pHandle, "SourceMod");
pHandle->m_thread = new ke::Thread(pHandle.get(), "SourceMod");
if (!pHandle->m_thread->Succeeded())
return NULL;
+1 -1
View File
@@ -108,7 +108,7 @@ IThreadHandle *WinThreader::MakeThread(IThread *pThread, const ThreadParams *par
ke::AutoPtr<ThreadHandle> pHandle(new ThreadHandle(this, pThread, params));
pHandle->m_thread = new ke::Thread(pHandle, "SourceMod");
pHandle->m_thread = new ke::Thread(pHandle.get(), "SourceMod");
if (!pHandle->m_thread->Succeeded())
return NULL;