Changeset 39656 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Dec 19, 2011 6:33:10 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 75470
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/freebsd/semfastmutex-r0drv-freebsd.c
r25722 r39656 67 67 { 68 68 pThis->u32Magic = RTSEMFASTMUTEX_MAGIC; 69 sx_init (&pThis->SxLock, "IPRT Fast Mutex Semaphore");69 sx_init_flags(&pThis->SxLock, "IPRT Fast Mutex Semaphore", SX_DUPOK); 70 70 71 71 *phFastMtx = pThis;
Note:
See TracChangeset
for help on using the changeset viewer.