Changeset 25368 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- Dec 14, 2009 4:31:40 PM (15 years ago)
- Location:
- trunk/src/VBox/Runtime/include/internal
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/magics.h
r25059 r25368 67 67 /** The magic value for RTLOCALIPCSERVER::u32Magic. (Katsuhiro Otomo) */ 68 68 #define RTLOCALIPCSESSION_MAGIC 0x19530414 69 /** The magic value for RTLOCKVALIDATORREC::u32Magic. (Vladimir Vladimirovich Nabokov) */ 70 #define RTLOCKVALIDATORREC_MAGIC 0x18990422 71 /** The dead magic value for RTLOCKVALIDATORREC::u32Magic. */ 72 #define RTLOCKVALIDATORREC_MAGIC_DEAD 0x19770702 69 73 /** Magic number for RTMEMCACHEINT::u32Magic. (Joseph Weizenbaum) */ 70 74 #define RTMEMCACHE_MAGIC 0x19230108 -
trunk/src/VBox/Runtime/include/internal/thread.h
r23124 r25368 93 93 union RTTHREADINTBLOCKID 94 94 { 95 PRTLOCKVALIDATORREC pRec; 95 96 uint64_t u64; 96 PRTCRITSECT pCritSect;97 RTSEMEVENT Event;98 RTSEMEVENTMULTI EventMulti;99 RTSEMMUTEX Mutex;100 97 } Block; 101 98 /** Where we're blocking. */ 99 const char volatile *pszBlockFunction; 100 /** Where we're blocking. */ 102 101 const char volatile *pszBlockFile; 103 102 /** Where we're blocking. */ 104 u nsignedvolatile uBlockLine;105 /** Where we're blocking. */ 106 RT UINTPTR volatileuBlockId;103 uint32_t volatile uBlockLine; 104 /** Where we're blocking. */ 105 RTHCUINTPTR volatile uBlockId; 107 106 /** Number of registered write locks, mutexes and critsects that this thread owns. */ 108 107 int32_t volatile cWriteLocks;
Note:
See TracChangeset
for help on using the changeset viewer.