vbox的更動 44456 路徑 trunk/src/VBox/Runtime/r3/init.cpp
- 時間撮記:
- 2013-1-30 上午10:59:47 (12 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Runtime/r3/init.cpp
r40317 r44456 100 100 static char ** g_papszrtOrgArgs; 101 101 102 /** Are we running in unobtrusive mode? */ 103 static bool g_fUnobtrusive = false; 104 102 105 /** 103 106 * Program start nanosecond TS. … … 341 344 #endif 342 345 346 g_fUnobtrusive = fFlags & RTR3INIT_FLAGS_UNOBTRUSIVE; 347 343 348 #if !defined(IN_GUEST) && !defined(RT_NO_GIP) 344 349 # ifdef VBOX … … 484 489 { 485 490 /* no entry log flow, because prefixes and thread may freak out. */ 486 Assert(!(fFlags & ~(RTR3INIT_FLAGS_DLL | RTR3INIT_FLAGS_SUPLIB))); 491 Assert(!(fFlags & ~( RTR3INIT_FLAGS_DLL 492 | RTR3INIT_FLAGS_SUPLIB 493 | RTR3INIT_FLAGS_UNOBTRUSIVE))); 487 494 Assert(!(fFlags & RTR3INIT_FLAGS_DLL) || cArgs == 0); 488 495 … … 558 565 } 559 566 567 RTR3DECL(bool) RTR3InitIsUnobtrusive(void) 568 { 569 return g_fUnobtrusive; 570 } 560 571 561 572 #if 0 /** @todo implement RTR3Term. */
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器