Changeset 25478 in vbox for trunk/src/VBox/Runtime/include/internal
- Timestamp:
- Dec 18, 2009 12:58:10 PM (15 years ago)
- Location:
- trunk/src/VBox/Runtime/include/internal
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/lockvalidator.h
r25436 r25478 48 48 /** What we're blocking on. */ 49 49 PRTLOCKVALIDATORREC pRec; 50 /** Where we're blocking. */ 51 const char volatile *pszBlockFunction; 52 /** Where we're blocking. */ 53 const char volatile *pszBlockFile; 54 /** Where we're blocking. */ 55 uint32_t volatile uBlockLine; 56 /** Where we're blocking. */ 57 RTHCUINTPTR volatile uBlockId; 58 50 /** Where we are blocking. */ 51 RTLOCKVALIDATORSRCPOS SrcPos; 59 52 /** Number of registered write locks, mutexes and critsects that this thread owns. */ 60 53 int32_t volatile cWriteLocks; -
trunk/src/VBox/Runtime/include/internal/strict.h
r25467 r25478 58 58 #endif 59 59 60 #ifdef RTSEMMUTEX_STRICT61 # define RTSEMMUTEX_STRICT_POS_DECL RTHCUINTPTR uId, RT_SRC_POS_DECL62 # define RTSEMMUTEX_STRICT_POS_ARGS uId, RT_SRC_POS_ARGS63 #else64 # define RTSEMMUTEX_STRICT_POS_DECL int iDummy65 # define RTSEMMUTEX_STRICT_POS_ARGS 066 #endif67 68 60 69 61 /** @def RTSEMRW_STRICT … … 74 66 #endif 75 67 76 #ifdef RTSEMRW_STRICT77 # define RTSEMRW_STRICT_POS_DECL RTHCUINTPTR uId, RT_SRC_POS_DECL78 # define RTSEMRW_STRICT_POS_ARGS uId, RT_SRC_POS_ARGS79 #else80 # define RTSEMRW_STRICT_POS_DECL int iDummy81 # define RTSEMRW_STRICT_POS_ARGS 082 #endif83 84 68 85 69
Note:
See TracChangeset
for help on using the changeset viewer.