Changeset 6231 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Jan 3, 2008 3:28:30 PM (17 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r6147 r6231 540 540 endif 541 541 RuntimeLnx32GuestR3_SOURCES = $(RuntimeR3_SOURCES.linux) $(RuntimeR3_SOURCES) 542 RuntimeLnx32GuestR3_SOURCES += VBox/logbackdoor.cpp 542 543 RuntimeLnx32GuestR3_INCS = $(RuntimeR3_INCS.linux) $(RuntimeR3_INCS) 543 544 -
trunk/src/VBox/Runtime/VBox/logbackdoor.cpp
r5999 r6231 68 68 } 69 69 70 #ifdef IN_GUEST_R0 70 71 71 72 RTDECL(void) RTLogWriteUser(const char *pch, size_t cb) … … 86 87 } 87 88 89 #elif defined(RT_OS_LINUX) && defined(IN_GUEST_R3) 90 91 #include <VBox/VBoxGuest.h> 92 93 RTDECL(void) RTLogWriteUser(const char *pch, size_t cb) 94 { 95 VbglR3WriteLog(pch, cb); 96 } 97 98 #else 99 # error Port me! 100 #endif 88 101 89 102 #if defined(RT_OS_LINUX) && defined(IN_MODULE)
Note:
See TracChangeset
for help on using the changeset viewer.