Changeset 11521 in vbox for trunk/src/VBox
- Timestamp:
- Aug 20, 2008 2:46:29 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 35066
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/alloc/heapsimple.cpp
r11519 r11521 44 44 #include "internal/magics.h" 45 45 46 #if defined(IN_GUEST_R0) && defined(RT_OS_LINUX) 46 #if defined(IN_GUEST_R0) && defined(RT_OS_LINUX) && defined(IN_MODULE) 47 47 #include "the-linux-kernel.h" 48 48 EXPORT_SYMBOL(RTHeapSimpleAlloc); -
trunk/src/VBox/Runtime/common/log/log.cpp
r11391 r11521 587 587 if (MutexSem != NIL_RTSEMFASTMUTEX) 588 588 { 589 int rc2; 589 590 RTSemFastMutexRelease(MutexSem); 590 intrc2 = RTSemFastMutexDestroy(MutexSem);591 rc2 = RTSemFastMutexDestroy(MutexSem); 591 592 AssertRC(rc2); 592 593 if (RT_FAILURE(rc2) && RT_SUCCESS(rc)) -
trunk/src/VBox/Runtime/r0drv/linux/spinlock-r0drv-linux.c
r11519 r11521 44 44 #include <linux/spinlock.h> /** @todo why is this here and not in the-linux-kernel.h? */ 45 45 46 #if defined(IN_GUEST_R0) 46 #if defined(IN_GUEST_R0) && defined(IN_MODULE) 47 47 EXPORT_SYMBOL(RTSpinlockCreate); 48 48 EXPORT_SYMBOL(RTSpinlockDestroy);
Note:
See TracChangeset
for help on using the changeset viewer.