Changeset 8645 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- May 7, 2008 11:01:00 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/thread.h
r8245 r8645 66 66 /** Waiting on a event multiple wakeup semaphore. */ 67 67 RTTHREADSTATE_EVENTMULTI, 68 /** Waiting on a read write semaphore, read (shared) access. */ 69 RTTHREADSTATE_RW_READ, 70 /** Waiting on a read write semaphore, write (exclusive) access. */ 71 RTTHREADSTATE_RW_WRITE, 68 72 /** The thread is sleeping. */ 69 73 RTTHREADSTATE_SLEEP, … … 78 82 || (enmState) == RTTHREADSTATE_EVENT \ 79 83 || (enmState) == RTTHREADSTATE_EVENTMULTI \ 84 || (enmState) == RTTHREADSTATE_RW_READ \ 85 || (enmState) == RTTHREADSTATE_RW_WRITE \ 80 86 || (enmState) == RTTHREADSTATE_SLEEP \ 81 87 ) … … 140 146 /** Where we're blocking. */ 141 147 RTUINTPTR volatile uBlockId; 148 /** Number of registered write locks, mutexes and critsects that this thread owns. */ 149 int32_t volatile cWriteLocks; 150 /** Number of registered read locks that this thread owns, nesting included. */ 151 int32_t volatile cReadLocks; 142 152 #endif /* IN_RING3 */ 143 153 #ifdef IPRT_WITH_GENERIC_TLS
Note:
See TracChangeset
for help on using the changeset viewer.