Changeset 29255 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- May 9, 2010 6:11:24 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 61337
- Location:
- trunk/src/VBox/Runtime/r0drv/darwin
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/darwin/memobj-r0drv-darwin.cpp
r29027 r29255 33 33 #include <iprt/memobj.h> 34 34 35 #include <iprt/alloc.h>36 35 #include <iprt/asm.h> 36 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) 37 # include <iprt/asm-amd64-x86.h> 38 #endif 37 39 #include <iprt/assert.h> 38 40 #include <iprt/log.h> 41 #include <iprt/mem.h> 39 42 #include <iprt/param.h> 40 43 #include <iprt/process.h> -
trunk/src/VBox/Runtime/r0drv/darwin/memuserkernel-r0drv-darwin.cpp
r28800 r29255 33 33 #include <iprt/mem.h> 34 34 35 #include <iprt/asm.h> 35 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) 36 # include <iprt/asm-amd64-x86.h> 37 #endif 36 38 #include <iprt/err.h> 37 39 -
trunk/src/VBox/Runtime/r0drv/darwin/mp-r0drv-darwin.cpp
r28800 r29255 33 33 #include <iprt/mp.h> 34 34 35 #include <iprt/asm.h> 35 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) 36 # include <iprt/asm-amd64-x86.h> 37 #endif 36 38 #include <iprt/cpuset.h> 37 39 #include <iprt/err.h> -
trunk/src/VBox/Runtime/r0drv/darwin/semevent-r0drv-darwin.cpp
r28800 r29255 33 33 #include <iprt/semaphore.h> 34 34 35 #include <iprt/alloc.h>36 35 #include <iprt/assert.h> 37 36 #include <iprt/asm.h> 37 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) 38 # include <iprt/asm-amd64-x86.h> 39 #endif 38 40 #include <iprt/err.h> 41 #include <iprt/mem.h> 39 42 #include <iprt/mp.h> 40 43 #include <iprt/thread.h> -
trunk/src/VBox/Runtime/r0drv/darwin/semeventmulti-r0drv-darwin.cpp
r28800 r29255 33 33 #include <iprt/semaphore.h> 34 34 35 #include <iprt/alloc.h>36 35 #include <iprt/assert.h> 37 36 #include <iprt/asm.h> 37 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) 38 # include <iprt/asm-amd64-x86.h> 39 #endif 38 40 #include <iprt/err.h> 41 #include <iprt/mem.h> 39 42 #include <iprt/mp.h> 40 43 #include <iprt/thread.h> -
trunk/src/VBox/Runtime/r0drv/darwin/semfastmutex-r0drv-darwin.cpp
r28800 r29255 33 33 #include <iprt/semaphore.h> 34 34 35 #include <iprt/alloc.h>36 35 #include <iprt/assert.h> 37 36 #include <iprt/asm.h> 37 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) 38 # include <iprt/asm-amd64-x86.h> 39 #endif 38 40 #include <iprt/err.h> 41 #include <iprt/mem.h> 39 42 #include <iprt/mp.h> 40 43 #include <iprt/thread.h> -
trunk/src/VBox/Runtime/r0drv/darwin/semmutex-r0drv-darwin.cpp
r28800 r29255 34 34 35 35 #include <iprt/asm.h> 36 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) 37 # include <iprt/asm-amd64-x86.h> 38 #endif 36 39 #include <iprt/assert.h> 37 40 #include <iprt/err.h> -
trunk/src/VBox/Runtime/r0drv/darwin/spinlock-r0drv-darwin.cpp
r28800 r29255 35 35 #include <iprt/assert.h> 36 36 #include <iprt/asm.h> 37 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) 38 # include <iprt/asm-amd64-x86.h> 39 #endif 37 40 #include <iprt/err.h> 38 41 #include <iprt/mem.h> -
trunk/src/VBox/Runtime/r0drv/darwin/thread2-r0drv-darwin.cpp
r28800 r29255 33 33 #include <iprt/thread.h> 34 34 35 #include <iprt/asm.h> 35 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) 36 # include <iprt/asm-amd64-x86.h> 37 #endif 36 38 #include <iprt/assert.h> 37 39 #include <iprt/err.h> -
trunk/src/VBox/Runtime/r0drv/darwin/threadpreempt-r0drv-darwin.cpp
r28800 r29255 33 33 #include <iprt/thread.h> 34 34 35 #include <iprt/asm.h> 35 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) 36 # include <iprt/asm-amd64-x86.h> 37 #endif 36 38 #include <iprt/assert.h> 37 39 #include <iprt/err.h>
Note:
See TracChangeset
for help on using the changeset viewer.