vbox的更動 1190 路徑 trunk/src/VBox/Runtime/r3/os2
- 時間撮記:
- 2007-3-4 下午08:42:13 (18 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Runtime/r3/os2/thread-os2.cpp
r248 r1190 33 33 #include <stdlib.h> 34 34 #include <signal.h> 35 #include <InnoTekLIBC/FastInfoBlocks.h> 35 36 36 37 #include <iprt/thread.h> … … 109 110 *g_ppCurThread = pThread; 110 111 112 #ifdef fibGetTidPid 113 rtThreadMain(pThread, fibGetTidPid()); 114 #else 111 115 rtThreadMain(pThread, _gettid()); 116 #endif 112 117 113 118 *g_ppCurThread = NULL; … … 150 155 RTDECL(RTNATIVETHREAD) RTThreadNativeSelf(void) 151 156 { 152 PRTTHREADINT pThread = *g_ppCurThread; 153 if (pThread)154 return (RTNATIVETHREAD)pThread->Core.Key; 157 #ifdef fibGetTidPid 158 return fibGetTidPid(); 159 #else 155 160 return _gettid(); 161 #endif 156 162 } 157 163
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器