Changeset 9588 in vbox for trunk/src/VBox
- Timestamp:
- Jun 11, 2008 12:52:02 AM (17 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r9564 r9588 632 632 # RuntimeW32GuestR3 - Win32 guest program runtime. 633 633 # 634 ifdef VBOX_WITH_64BIT_ADDITIONS 634 ifdef VBOX_WITH_64BIT_ADDITIONS 635 635 RuntimeW32GuestR3_TEMPLATE = VBOXGUESTR3LIB 636 636 else … … 977 977 r0drv/nt/thread-r0drv-nt.cpp \ 978 978 r0drv/nt/thread2-r0drv-nt.cpp \ 979 r0drv/nt/time-r0drv-nt.cpp 979 r0drv/nt/time-r0drv-nt.cpp \ 980 r0drv/nt/timer-r0drv-nt.cpp 980 981 ## @todo timer-r0drv-nt.cpp and assert-r0drv-nt.cpp 981 982 -
trunk/src/VBox/Runtime/r0drv/initterm-r0drv.cpp
r8245 r9588 36 36 #include <iprt/assert.h> 37 37 #include <iprt/err.h> 38 #include <iprt/mp.h> 38 39 39 40 #include "internal/initterm.h" … … 58 59 #endif 59 60 if (RT_SUCCESS(rc)) 60 return rc; 61 { 62 #ifndef IN_GUEST /* play safe for now */ 63 rc = RTR0MpNotificationInit(NULL); /** @todo drop the arg and rename to rtR0* */ 64 #endif 65 if (RT_SUCCESS(rc)) 66 return rc; 67 } 61 68 62 69 rtR0TermNative(); … … 74 81 rtThreadTerm(); 75 82 #endif 83 #ifndef IN_GUEST /* play safe for now */ 84 RTR0MpNotificationTerm(NULL); /** @todo drop the arg and rename to rtR0* */ 85 #endif 76 86 rtR0TermNative(); 77 87 } -
trunk/src/VBox/Runtime/r0drv/mp-r0drv.h
r9309 r9588 34 34 #include <iprt/mp.h> 35 35 36 __BEGIN_DECLS 37 36 38 /** 37 39 * MP callback … … 64 66 void rtMpNotificationDoCallbacks(RTMPEVENT enmEvent, RTCPUID idCpu); 65 67 68 __END_DECLS 69 66 70 #endif
Note:
See TracChangeset
for help on using the changeset viewer.