Changeset 13314 in vbox for trunk/src/VBox/Additions/linux
- Timestamp:
- Oct 15, 2008 10:46:08 PM (16 years ago)
- Location:
- trunk/src/VBox/Additions/linux/module
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/module/Makefile.module
r11876 r13314 71 71 r0drv/alloc-r0drv.o \ 72 72 r0drv/linux/alloc-r0drv-linux.o \ 73 r0drv/linux/assert-r0drv-linux.o \ 73 74 r0drv/linux/semevent-r0drv-linux.o \ 74 75 r0drv/linux/semfastmutex-r0drv-linux.o \ … … 79 80 umoddi3.o \ 80 81 qdivrem.o \ 81 assert.o \82 82 logbackdoor.o \ 83 83 logformat.o \ … … 85 85 strformatrt.o \ 86 86 strformattype.o \ 87 strformat-vbox.o 87 strformat-vbox.o \ 88 RTAssertShouldPanic-generic.o 88 89 ifeq ($(BUILD_TARGET_ARCH),amd64) 89 90 OBJS += \ -
trunk/src/VBox/Additions/linux/module/files_vboxadd
r11519 r13314 66 66 ${PATH_ROOT}/src/VBox/Runtime/common/math/gcc/udivdi3.c=>udivdi3.c \ 67 67 ${PATH_ROOT}/src/VBox/Runtime/common/math/gcc/umoddi3.c=>umoddi3.c \ 68 ${PATH_ROOT}/src/VBox/Runtime/common/misc/assert.cpp=>assert.c \69 68 ${PATH_ROOT}/src/VBox/Runtime/common/string/strformat.cpp=>strformat.c \ 70 69 ${PATH_ROOT}/src/VBox/Runtime/common/string/strformatrt.cpp=>strformatrt.c \ 71 70 ${PATH_ROOT}/src/VBox/Runtime/common/string/strformattype.cpp=>strformattype.c \ 71 ${PATH_ROOT}/src/VBox/Runtime/generic/RTAssertShouldPanic-generic.cpp=>RTAssertShouldPanic-generic.cpp \ 72 72 ${PATH_ROOT}/src/VBox/Runtime/r0drv/alloc-r0drv.cpp=>r0drv/alloc-r0drv.c \ 73 73 ${PATH_ROOT}/src/VBox/Runtime/r0drv/alloc-r0drv.h=>r0drv/alloc-r0drv.h \ 74 74 ${PATH_ROOT}/src/VBox/Runtime/r0drv/linux/alloc-r0drv-linux.c=>r0drv/linux/alloc-r0drv-linux.c \ 75 ${PATH_ROOT}/src/VBox/Runtime/r0drv/linux/assert-r0drv-linux.c=>r0drv/linux/assert-r0drv-linux.c \ 75 76 ${PATH_ROOT}/src/VBox/Runtime/r0drv/linux/semevent-r0drv-linux.c=>r0drv/linux/semevent-r0drv-linux.c \ 76 77 ${PATH_ROOT}/src/VBox/Runtime/r0drv/linux/semeventmulti-r0drv-linux.c=>r0drv/linux/semeventmulti-r0drv-linux.c \ -
trunk/src/VBox/Additions/linux/module/vboxmod.c
r12280 r13314 1 1 /** @file 2 *3 2 * vboxadd -- VirtualBox Guest Additions for Linux 4 3 */ … … 85 84 #endif 86 85 87 /* This is called by our assert macros to find out whether we want88 to insert a breakpoint after the assertion. In kernel modules we89 do not of course. */90 RTDECL(bool) RTAssertDoBreakpoint(void)91 {92 return false;93 }94 EXPORT_SYMBOL(RTAssertDoBreakpoint);95 96 86 /** device extension structure (we only support one device instance) */ 97 87 static VBoxDevice *vboxDev = NULL; … … 115 105 EXPORT_SYMBOL (vboxadd_cmc_open); 116 106 EXPORT_SYMBOL (vboxadd_cmc_close); 107 108 /** @todo check that this works for all the kernels. */ 109 EXPORT_SYMBOL (RTR0AssertPanicSystem); 110 EXPORT_SYMBOL (RTAssertShouldPanic); 111 EXPORT_SYMBOL (AssertMsg1); 112 EXPORT_SYMBOL (AssertMsg2); 113 117 114 118 115 #define MAX_HGCM_CONNECTIONS 1024 … … 599 596 600 597 /** 601 * Dummy read function - we only supply this because we implement poll and 598 * Dummy read function - we only supply this because we implement poll and 602 599 * fasync. 603 600 */ … … 1167 1164 MODULE_DEVICE_TABLE(pci, vmmdev_pci_id); 1168 1165 1169 int __gxx_personality_v0 = 0xdeadbeef; 1166 1170 1167 1171 1168 /* … … 1176 1173 * End: 1177 1174 */ 1175
Note:
See TracChangeset
for help on using the changeset viewer.