Changeset 10827 in vbox
- Timestamp:
- Jul 23, 2008 11:50:55 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 33612
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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;
Note:
See TracChangeset
for help on using the changeset viewer.