Changeset 8651 in vbox for trunk/src/VBox/Runtime/r3/posix
- Timestamp:
- May 7, 2008 12:16:29 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/semmutex-posix.cpp
r8649 r8651 38 38 #include <iprt/asm.h> 39 39 #include <iprt/err.h> 40 #include "internal/strict.h" 40 41 41 42 #include <errno.h> … … 43 44 #include <unistd.h> 44 45 #include <sys/time.h> 45 46 47 /*******************************************************************************48 * Defined Constants And Macros *49 *******************************************************************************/50 /** @def RTSEMMUTEX_STRICT51 * Enables strictness checks and lock accounting.52 */53 #ifndef RTSEMMUTEX_STRICT54 # if defined(RT_STRICT) || defined(RT_LOCK_STRICT) || defined(RTSEM_STRICT) || defined(DOXYGEN_RUNNING)55 # define RTSEMMUTEX_STRICT56 # endif57 #endif58 46 59 47
Note:
See TracChangeset
for help on using the changeset viewer.