Changeset 1816 in vbox for trunk/src/VBox/Runtime/r0drv/nt
- Timestamp:
- Mar 29, 2007 6:59:35 PM (18 years ago)
- Location:
- trunk/src/VBox/Runtime/r0drv/nt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/nt/semaphore-r0drv-nt.cpp
r1 r1816 32 32 #include <iprt/err.h> 33 33 34 #include "internal/magics.h" 35 34 36 35 37 /******************************************************************************* … … 47 49 } RTSEMEVENTINTERNAL, *PRTSEMEVENTINTERNAL; 48 50 49 /** Magic for the NT event semaphore structure. (Neil Gaiman) */50 #define RTSEMEVENT_MAGIC 0x1960111051 51 52 52 … … 67 67 } RTSEMMUTEXINTERNAL, *PRTSEMMUTEXINTERNAL; 68 68 69 /** Magic for the NT mutex semaphore structure. (Douglas Adams) */70 #define RTSEMMUTEX_MAGIC 0x1952031171 69 72 70 … … 82 80 } RTSEMFASTMUTEXINTERNAL, *PRTSEMFASTMUTEXINTERNAL; 83 81 84 /** Magic value for RTSEMFASTMUTEXINTERNAL::u32Magic (John Ronald Reuel Tolkien). */85 #define RTSEMFASTMUTEX_MAGIC 0x1892010286 82 87 83 -
trunk/src/VBox/Runtime/r0drv/nt/spinlock-r0drv-nt.cpp
r1 r1816 25 25 *******************************************************************************/ 26 26 #include "the-nt-kernel.h" 27 27 28 #include <iprt/spinlock.h> 28 29 #include <iprt/err.h> … … 30 31 #include <iprt/assert.h> 31 32 #include <iprt/asm.h> 33 34 #include "internal/magics.h" 32 35 33 36 … … 45 48 KSPIN_LOCK Spinlock; 46 49 } RTSPINLOCKINTERNAL, *PRTSPINLOCKINTERNAL; 47 48 /** Magic value for RTSPINLOCKINTERNAL::u32Magic. (Terry Pratchett) */49 #define RTSPINLOCK_MAGIC 0x1948042850 50 51 51
Note:
See TracChangeset
for help on using the changeset viewer.