Changeset 8677 for trunk/include/VBox/pdmcritsect.h
- Timestamp:
- 05/07/08 20:13:32 (8 months ago)
- Files:
-
- trunk/include/VBox/pdmcritsect.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/include/VBox/pdmcritsect.h
r8155 r8677 74 74 75 75 /** 76 * Leaves a critical section entered with PDMCritSectEnter().76 * Enters a PDM critical section. 77 77 * 78 78 * @returns VINF_SUCCESS if entered successfully. … … 85 85 */ 86 86 PDMDECL(int) PDMCritSectEnter(PPDMCRITSECT pCritSect, int rcBusy); 87 88 /** 89 * Enters a PDM critical section. 90 * 91 * @returns VINF_SUCCESS if entered successfully. 92 * @returns rcBusy when encountering a busy critical section in GC/R0. 93 * @returns VERR_SEM_DESTROYED if the critical section is dead. 94 * 95 * @param pCritSect The PDM critical section to enter. 96 * @param fCallHost Whether this is a VMMGCCallHost() or VMMR0CallHost() request. 97 */ 98 PDMR3DECL(int) PDMR3CritSectEnterEx(PPDMCRITSECT pCritSect, bool fCallHost); 87 99 88 100 /**

