Export GetInvalidThreadID() through RageThreads.h, rather than arch/Threads/Thread.h (via GetInvalidThreadId(), lowercase d).

This commit is contained in:
Steve Checkoway
2007-02-23 10:24:51 +00:00
parent 3b2e02d5fe
commit 6ed2dcf230
2 changed files with 5 additions and 0 deletions
+4
View File
@@ -360,6 +360,10 @@ uint64_t RageThread::GetCurrentThreadID()
{
return GetThisThreadId();
}
uint64_t RageThread::GetInvalidThreadID()
{
return GetInvalidThreadId();
}
/* Normally, checkpoints are only seen in crash logs. It's occasionally useful
* to see them in logs, but this outputs a huge amount of text. */
+1
View File
@@ -39,6 +39,7 @@ public:
static bool GetIsShowingDialog() { return s_bIsShowingDialog; }
static void SetIsShowingDialog( bool b ) { s_bIsShowingDialog = b; }
static uint64_t GetInvalidThreadID();
private:
ThreadSlot *m_pSlot;