儲存庫 vbox 的更動 18383
- 時間撮記:
- 2009-3-27 下午12:24:05 (16 年 以前)
- 檔案:
-
- 修改 1 筆資料
圖例:
- 未更動
- 新增
- 刪除
-
trunk/src/VBox/Devices/Network/DevPCNet.cpp
r15006 r18383 3747 3747 int rc; 3748 3748 3749 STAM_PROFILE_ADV_START(&pThis->StatTimer, a); 3750 rc = PDMCritSectEnter(&pThis->CritSect, VERR_SEM_BUSY); 3751 AssertReleaseRC(rc); 3752 3753 pcnetPollTimer(pThis); 3754 3755 PDMCritSectLeave(&pThis->CritSect); 3756 STAM_PROFILE_ADV_STOP(&pThis->StatTimer, a); 3749 /* 3750 * Don't block if we cannot enter here. 3751 */ 3752 rc = PDMR3CritSectTryEnter(&pThis->CritSect); 3753 if (RT_SUCCESS(rc)) 3754 { 3755 STAM_PROFILE_ADV_START(&pThis->StatTimer, a); 3756 pcnetPollTimer(pThis); 3757 PDMCritSectLeave(&pThis->CritSect); 3758 STAM_PROFILE_ADV_STOP(&pThis->StatTimer, a); 3759 } 3757 3760 } 3758 3761
注意:
瀏覽 TracChangeset
來幫助您使用更動檢視器