Changeset 25406 in vbox for trunk/include
- Timestamp:
- Dec 15, 2009 2:23:53 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56035
- Location:
- trunk/include/iprt
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/critsect.h
r25368 r25406 33 33 #include <iprt/cdefs.h> 34 34 #include <iprt/types.h> 35 #include <iprt/ lockvalidator.h>35 #include <iprt/assert.h> 36 36 #ifdef IN_RING3 37 # include <iprt/thread.h>37 # include <iprt/thread.h> 38 38 #endif 39 39 -
trunk/include/iprt/lockvalidator.h
r25398 r25406 34 34 #include <iprt/types.h> 35 35 #include <iprt/assert.h> 36 #include <iprt/thread.h> 36 37 37 38 … … 65 66 /** Pointer to the lock record below us. Only accessed by the owner. */ 66 67 R3R0PTRTYPE(PRTLOCKVALIDATORREC) pDown; 68 /** Recursion count */ 69 uint32_t cRecursion; 70 /** The lock sub-class. */ 71 uint32_t volatile uSubClass; 67 72 /** The lock class. */ 68 73 RTLOCKVALIDATORCLASS hClass; 69 /** The lock sub-class. */70 uint32_t volatile uSubClass;71 /** Reserved for future use. */72 uint32_t u32Reserved;73 74 /** Pointer to the lock. */ 74 75 RTHCPTR hLock; … … 167 168 168 169 /** 170 * Change the thread state to blocking and do deadlock detection. 171 * 172 * @param pRec The validator record we're blocing on. 173 * @param hThread The current thread. Shall not be NIL_RTTHREAD! 174 * @param enmState The sleep state. 175 * @param pvBlock Pointer to a RTLOCKVALIDATORREC structure. 176 * @param fRecursiveOk Whether it's ok to recurse. 177 * @param uId Where we are blocking. 178 * @param RT_SRC_POS_DECL Where we are blocking. 179 */ 180 RTDECL(void) RTLockValidatorCheckBlocking(PRTLOCKVALIDATORREC pRec, RTTHREAD hThread, 181 RTTHREADSTATE enmState, bool fRecursiveOk, 182 RTHCUINTPTR uId, RT_SRC_POS_DECL); 183 184 /** 169 185 * Check the exit order. 170 186 * … … 189 205 RTDECL(int) RTLockValidatorCheckReleaseOrder(PRTLOCKVALIDATORREC pRec, RTTHREAD hThread); 190 206 207 191 208 /** 192 209 * Record the specified thread as lock owner. … … 226 243 /*RTDECL(int) RTLockValidatorClassCreate();*/ 227 244 245 228 246 RT_C_DECLS_END 229 247 -
trunk/include/iprt/thread.h
r25398 r25406 649 649 650 650 /** 651 * Change the thread state to blocking and do deadlock detection. 652 * 653 * This is a RT_STRICT method for debugging locks and detecting deadlocks. 654 * 655 * @param hThread The current thread. 656 * @param enmState The sleep state. 657 * @param pvBlock Pointer to a RTLOCKVALIDATORREC structure. 658 * @param fRecursiveOk Whether it's ok to recurse. 659 * @param uId Where we are blocking. 660 * @param RT_SRC_POS_DECL Where we are blocking. 661 * 662 * @todo Move this to RTLockValidator. 663 */ 664 RTDECL(void) RTThreadBlockingDebug(RTTHREAD hThread, RTTHREADSTATE enmState, bool fRecursiveOk, 665 PRTLOCKVALIDATORREC pValidatorRec, RTHCUINTPTR uId, RT_SRC_POS_DECL); 651 * Translate a thread state into a string. 652 * 653 * @returns Pointer to a read-only string containing the state name. 654 * @param enmState The state. 655 */ 656 RTDECL(const char *) RTThreadStateName(RTTHREADSTATE enmState); 666 657 667 658
Note:
See TracChangeset
for help on using the changeset viewer.