Changeset 25368 in vbox for trunk/src/VBox/Runtime/include/internal/thread.h
- Timestamp:
- Dec 14, 2009 4:31:40 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 55985
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.