Changeset 8651 in vbox for trunk/src/VBox/Runtime/r3/win
- Timestamp:
- May 7, 2008 12:16:29 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/sems-win.cpp
r8649 r8651 40 40 #include <iprt/assert.h> 41 41 #include <iprt/err.h> 42 #include "internal/strict.h" 42 43 43 44 … … 45 46 * Defined Constants And Macros * 46 47 *******************************************************************************/ 47 /** @def RTSEMMUTEX_STRICT48 * Enables strictness checks and lock accounting.49 */50 #ifndef RTSEMMUTEX_STRICT51 # if defined(RT_STRICT) || defined(RT_LOCK_STRICT) || defined(RTSEM_STRICT) || defined(DOXYGEN_RUNNING)52 # define RTSEMMUTEX_STRICT53 # endif54 #endif55 56 48 /** Converts semaphore to win32 handle. */ 57 49 #define SEM2HND(Sem) ((HANDLE)(uintptr_t)Sem) … … 290 282 } 291 283 292 293
Note:
See TracChangeset
for help on using the changeset viewer.