Changeset 22052 in vbox for trunk/src/VBox/Runtime/r0drv/darwin/thread2-r0drv-darwin.cpp
- Timestamp:
- Aug 7, 2009 9:45:48 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/darwin/thread2-r0drv-darwin.cpp
r8245 r22052 29 29 */ 30 30 31 31 32 /******************************************************************************* 32 33 * Header Files * 33 34 *******************************************************************************/ 34 35 #include "the-darwin-kernel.h" 36 #include "internal/iprt.h" 35 37 #include <iprt/thread.h> 38 39 #include <iprt/asm.h> 40 #include <iprt/assert.h> 36 41 #include <iprt/err.h> 37 #include <iprt/assert.h>38 42 #include "internal/thread.h" 39 43 … … 102 106 return VERR_INVALID_PARAMETER; 103 107 } 108 RT_ASSERT_INTS_ON(); 104 109 105 110 /* … … 156 161 int rtThreadNativeCreate(PRTTHREADINT pThreadInt, PRTNATIVETHREAD pNativeThread) 157 162 { 163 RT_ASSERT_PREEMPTIBLE(); 164 158 165 thread_t NativeThread; 159 166 kern_return_t kr = kernel_thread_start(rtThreadNativeMain, pThreadInt, &NativeThread);
Note:
See TracChangeset
for help on using the changeset viewer.