Changeset 36190 in vbox for trunk/src/VBox/Runtime/r0drv/nt
- Timestamp:
- Mar 7, 2011 4:28:50 PM (14 years ago)
- Location:
- trunk/src/VBox/Runtime/r0drv/nt
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/nt/semevent-r0drv-nt.cpp
r33311 r36190 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #define RTSEMEVENT_WITHOUT_REMAPPING 31 32 #include "the-nt-kernel.h" 32 33 #include <iprt/semaphore.h> … … 249 250 250 251 251 #undef RTSemEventWaitEx252 252 RTDECL(int) RTSemEventWaitEx(RTSEMEVENT hEventSem, uint32_t fFlags, uint64_t uTimeout) 253 253 { -
trunk/src/VBox/Runtime/r0drv/nt/semeventmulti-r0drv-nt.cpp
r33158 r36190 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #define RTSEMEVENTMULTI_WITHOUT_REMAPPING 31 32 #include "the-nt-kernel.h" 32 33 #include <iprt/semaphore.h> … … 272 273 273 274 274 #undef RTSemEventMultiWaitEx275 275 RTDECL(int) RTSemEventMultiWaitEx(RTSEMEVENTMULTI hEventMultiSem, uint32_t fFlags, uint64_t uTimeout) 276 276 { -
trunk/src/VBox/Runtime/r0drv/nt/semmutex-r0drv-nt.cpp
r28800 r36190 30 30 * Header Files * 31 31 *******************************************************************************/ 32 #define RTSEMMUTEX_WITHOUT_REMAPPING 32 33 #include "the-nt-kernel.h" 33 34 #include <iprt/semaphore.h> … … 169 170 170 171 171 #undef RTSemMutexRequest172 172 RTDECL(int) RTSemMutexRequest(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies) 173 173 { … … 182 182 183 183 184 #undef RTSemMutexRequestNoResume185 184 RTDECL(int) RTSemMutexRequestNoResume(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies) 186 185 {
Note:
See TracChangeset
for help on using the changeset viewer.