Changeset 10827
- Timestamp:
- 07/23/08 13:50:55 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/VBox/Runtime/r0drv/nt/semfastmutex-r0drv-nt.cpp
r10738 r10827 97 97 ASMAtomicIncU32(&pFastInt->u32Magic); 98 98 Assert(pFastInt->Mutex.Count == 1); 99 Assert(pFastInt->Mutex.Contention == 0); 99 /* It's not very clear what this Contention field really means. Seems to be a counter for the number of times contention occurred. (see e.g. http://winprogger.com/?p=6) 100 * The following assertion is therefor wrong: 101 * Assert(pFastInt->Mutex.Contention == 0); 102 */ 100 103 RTMemFree(pFastInt); 101 104 return VINF_SUCCESS;

