- Timestamp:
- Feb 4, 2007 3:20:48 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 18225
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/VMM/PDMCritSect.cpp ¶
r23 r598 308 308 } 309 309 310 /** 311 * Try enter a critical section. 312 * 313 * @returns VINF_SUCCESS on success. 314 * @returns VERR_SEM_BUSY if the critsect was owned. 315 * @returns VERR_SEM_NESTED if nested enter on a no nesting section. (Asserted.) 316 * @returns VERR_SEM_DESTROYED if RTCritSectDelete was called while waiting. 317 * @param pCritSect The critical section. 318 */ 319 PDMR3DECL(int) PDMR3CritSectTryEnter(PPDMCRITSECT pCritSect) 320 { 321 return RTCritSectTryEnter(&pCritSect->s.Core); 322 }
Note:
See TracChangeset
for help on using the changeset viewer.