Changeset 19590 in vbox
- Timestamp:
- May 11, 2009 3:19:58 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PDMAllCritSect.cpp
r19471 r19590 329 329 } 330 330 331 332 /** 333 * Gets the recursion depth. 334 * 335 * @returns The recursion depth. 336 * @param pCritSect The critical section. 337 */ 338 VMMDECL(uint32_t) PDMCritSectGetRecursion(PCPDMCRITSECT pCritSect) 339 { 340 return RTCritSectGetRecursion(&pCritSect->s.Core); 341 }
Note:
See TracChangeset
for help on using the changeset viewer.