Changeset 36190 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- Mar 7, 2011 4:28:50 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70394
- Location:
- trunk/src/VBox/Runtime/r0drv
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/alloc-r0drv.cpp
r33269 r36190 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #define RTMEM_NO_WRAP_TO_EF_APIS 31 32 #include <iprt/mem.h> 32 33 #include "internal/iprt.h" … … 57 58 # define RTR0MEM_FENCE_EXTRA 0 58 59 #endif 59 60 61 #undef RTMemTmpAlloc62 #undef RTMemTmpAllocTag63 #undef RTMemTmpAllocZ64 #undef RTMemTmpAllocZTag65 #undef RTMemTmpFree66 #undef RTMemAlloc67 #undef RTMemAllocTag68 #undef RTMemAllocZ69 #undef RTMemAllocZTag70 #undef RTMemAllocVar71 #undef RTMemAllocVarTag72 #undef RTMemAllocZVar73 #undef RTMemAllocZVarTag74 #undef RTMemRealloc75 #undef RTMemReallocTag76 #undef RTMemFree77 #undef RTMemDup78 #undef RTMemDupTag79 #undef RTMemDupEx80 #undef RTMemDupExTag81 #undef rtR0MemAllocEx82 #undef rtR0MemAllocExTag83 #undef rtR0MemFreeEx84 60 85 61 -
trunk/src/VBox/Runtime/r0drv/darwin/semevent-r0drv-darwin.cpp
r33269 r36190 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #define RTSEMEVENT_WITHOUT_REMAPPING 31 32 #include "the-darwin-kernel.h" 32 33 #include "internal/iprt.h" … … 371 372 372 373 373 #undef RTSemEventWaitEx374 374 RTDECL(int) RTSemEventWaitEx(RTSEMEVENT hEventSem, uint32_t fFlags, uint64_t uTimeout) 375 375 { -
trunk/src/VBox/Runtime/r0drv/darwin/semeventmulti-r0drv-darwin.cpp
r33158 r36190 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #define RTSEMEVENTMULTI_WITHOUT_REMAPPING 31 32 #include "the-darwin-kernel.h" 32 33 #include "internal/iprt.h" … … 384 385 } 385 386 386 #undef RTSemEventMultiWaitEx387 387 RTDECL(int) RTSemEventMultiWaitEx(RTSEMEVENTMULTI hEventMultiSem, uint32_t fFlags, uint64_t uTimeout) 388 388 { -
trunk/src/VBox/Runtime/r0drv/darwin/semmutex-r0drv-darwin.cpp
r29255 r36190 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #define RTSEMMULTI_WITHOUT_REMAPPING 31 32 #include "the-darwin-kernel.h" 32 33 #include "internal/iprt.h" … … 301 302 302 303 303 #undef RTSemMutexRequest304 304 RTDECL(int) RTSemMutexRequest(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies) 305 305 { … … 314 314 315 315 316 #undef RTSemMutexRequestNoResume317 316 RTDECL(int) RTSemMutexRequestNoResume(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies) 318 317 { -
trunk/src/VBox/Runtime/r0drv/freebsd/semevent-r0drv-freebsd.c
r33376 r36190 32 32 * Header Files * 33 33 *******************************************************************************/ 34 #define RTSEMEVENT_WITHOUT_REMAPPING 34 35 #include "the-freebsd-kernel.h" 35 36 #include "internal/iprt.h" … … 227 228 228 229 229 #undef RTSemEventWaitEx230 230 RTDECL(int) RTSemEventWaitEx(RTSEMEVENT hEventSem, uint32_t fFlags, uint64_t uTimeout) 231 231 { -
trunk/src/VBox/Runtime/r0drv/freebsd/semeventmulti-r0drv-freebsd.c
r33376 r36190 32 32 * Header Files * 33 33 *******************************************************************************/ 34 #define RTSEMEVENTMULTI_WITHOUT_REMAPPING 34 35 #include "the-freebsd-kernel.h" 35 36 #include "internal/iprt.h" … … 289 290 290 291 291 #undef RTSemEventMultiWaitEx292 292 RTDECL(int) RTSemEventMultiWaitEx(RTSEMEVENTMULTI hEventMultiSem, uint32_t fFlags, uint64_t uTimeout) 293 293 { -
trunk/src/VBox/Runtime/r0drv/freebsd/semmutex-r0drv-freebsd.c
r28800 r36190 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #define RTSEMMUTEX_WITHOUT_REMAPPING 31 32 #include "the-freebsd-kernel.h" 32 33 #include "internal/iprt.h" … … 93 94 94 95 95 #undef RTSemMutexRequest96 96 RTDECL(int) RTSemMutexRequest(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies) 97 97 { … … 144 144 145 145 146 #undef RTSemMutexRequestNoResume147 146 RTDECL(int) RTSemMutexRequestNoResume(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies) 148 147 { -
trunk/src/VBox/Runtime/r0drv/linux/semevent-r0drv-linux.c
r33269 r36190 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #define RTSEMEVENT_WITHOUT_REMAPPING 31 32 #include "the-linux-kernel.h" 32 33 #include "internal/iprt.h" … … 237 238 238 239 239 #undef RTSemEventWaitEx240 240 RTDECL(int) RTSemEventWaitEx(RTSEMEVENT hEventSem, uint32_t fFlags, uint64_t uTimeout) 241 241 { -
trunk/src/VBox/Runtime/r0drv/linux/semeventmulti-r0drv-linux.c
r35051 r36190 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #define RTSEMEVENTMULTI_WITHOUT_REMAPPING 31 32 #include "the-linux-kernel.h" 32 33 #include "internal/iprt.h" … … 302 303 303 304 304 #undef RTSemEventMultiWaitEx305 305 RTDECL(int) RTSemEventMultiWaitEx(RTSEMEVENTMULTI hEventMultiSem, uint32_t fFlags, uint64_t uTimeout) 306 306 { -
trunk/src/VBox/Runtime/r0drv/linux/semmutex-r0drv-linux.c
r34406 r36190 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #define RTSEMMUTEX_WITHOUT_REMAPPING 31 32 #include "the-linux-kernel.h" 32 33 #include "internal/iprt.h" … … 297 298 298 299 299 #undef RTSemMutexRequest300 300 RTDECL(int) RTSemMutexRequest(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies) 301 301 { … … 312 312 313 313 314 #undef RTSemMutexRequestNoResume315 314 RTDECL(int) RTSemMutexRequestNoResume(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies) 316 315 { -
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 { -
trunk/src/VBox/Runtime/r0drv/solaris/semevent-r0drv-solaris.c
r33676 r36190 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #define RTSEMEVENT_WITHOUT_REMAPPING 31 32 #include "the-solaris-kernel.h" 32 33 #include "internal/iprt.h" … … 316 317 317 318 318 #undef RTSemEventWaitEx319 319 RTDECL(int) RTSemEventWaitEx(RTSEMEVENT hEventSem, uint32_t fFlags, uint64_t uTimeout) 320 320 { -
trunk/src/VBox/Runtime/r0drv/solaris/semeventmulti-r0drv-solaris.c
r33155 r36190 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #define RTSEMEVENTMULTI_WITHOUT_REMAPPING 31 32 #include "the-solaris-kernel.h" 32 33 #include "internal/iprt.h" … … 320 321 321 322 322 #undef RTSemEventMultiWaitEx323 323 RTDECL(int) RTSemEventMultiWaitEx(RTSEMEVENTMULTI hEventMultiSem, uint32_t fFlags, uint64_t uTimeout) 324 324 { -
trunk/src/VBox/Runtime/r0drv/solaris/semmutex-r0drv-solaris.c
r30013 r36190 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #define RTSEMMUTEX_WITHOUT_REMAPPING 31 32 #include "the-solaris-kernel.h" 32 33 #include "internal/iprt.h" … … 302 303 303 304 304 #undef RTSemMutexRequest305 305 RTDECL(int) RTSemMutexRequest(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies) 306 306 { … … 315 315 316 316 317 #undef RTSemMutexRequestNoResume318 317 RTDECL(int) RTSemMutexRequestNoResume(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies) 319 318 {
Note:
See TracChangeset
for help on using the changeset viewer.