Changeset 8650 in vbox for trunk/src/VBox
- Timestamp:
- May 7, 2008 12:07:55 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/critsect-generic.cpp
r8645 r8650 42 42 /** @def RTCRITSECT_STRICT 43 43 * Define this to enable deadlock detection. 44 * 45 * @remark This won't work safely on L4 since we have to traverse the AVL tree 46 * in order to get the RT thread structure there and this tree is 47 * protected by a critsect atm. 48 * @todo the L4 exclusion is no longer true, we've been using TLS for storing this for quite a while now. 49 */ 50 #if !defined(RTCRITSECT_STRICT) && defined(RT_STRICT) && !defined(RT_OS_L4) 44 */ 45 #if !defined(RTCRITSECT_STRICT) && defined(RT_STRICT) 51 46 # define RTCRITSECT_STRICT 52 47 #endif
Note:
See TracChangeset
for help on using the changeset viewer.