- Timestamp:
- Jul 29, 2020 11:54:52 AM (4 years ago)
- Location:
- trunk/src/VBox/HostDrivers/Support/linux
- Files:
-
- 2 edited
- 1 copied
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/linux/Makefile
r85521 r85523 44 44 ifndef VBOX_WITHOUT_COMBINED_SOURCES 45 45 VBOXMOD_OBJS += \ 46 combined-agnostic.o \ 46 combined-agnostic1.o \ 47 combined-agnostic2.o \ 47 48 combined-os-specific.o 48 49 else # VBOX_WITHOUT_COMBINED_SOURCES -
trunk/src/VBox/HostDrivers/Support/linux/combined-agnostic1.c
r85522 r85523 85 85 #undef LOG_GROUP 86 86 #include "common/misc/thread.c" 87 #undef LOG_GROUP88 #include "common/string/RTStrCat.c"89 #undef LOG_GROUP90 #include "common/string/RTStrCopy.c"91 #undef LOG_GROUP92 #include "common/string/RTStrCopyEx.c"93 #undef LOG_GROUP94 #include "common/string/RTStrCopyP.c"95 #undef LOG_GROUP96 #include "common/string/RTStrEnd.c"97 #undef LOG_GROUP98 #include "common/string/RTStrNCmp.c"99 #undef LOG_GROUP100 #include "common/string/RTStrNLen.c"101 #undef LOG_GROUP102 #include "common/string/stringalloc.c"103 #undef LOG_GROUP104 #include "common/string/strformat.c"105 #undef LOG_GROUP106 #include "common/string/strformatnum.c"107 #undef LOG_GROUP108 #include "common/string/strformattype.c"109 #undef LOG_GROUP110 #include "common/string/strprintf.c"111 #undef LOG_GROUP112 #include "common/string/strtonum.c"113 #undef LOG_GROUP114 #include "common/table/avlpv.c"115 #undef LOG_GROUP116 #include "common/time/time.c"117 #undef LOG_GROUP118 #include "generic/RTAssertShouldPanic-generic.c"119 #undef LOG_GROUP120 #include "generic/RTLogWriteStdErr-stub-generic.c"121 #undef LOG_GROUP122 #include "generic/RTLogWriteStdOut-stub-generic.c"123 #undef LOG_GROUP124 #include "generic/RTLogWriteUser-generic.c"125 #undef LOG_GROUP126 #include "generic/RTMpGetArraySize-generic.c"127 #undef LOG_GROUP128 #include "generic/RTMpGetCoreCount-generic.c"129 #undef LOG_GROUP130 #include "generic/RTSemEventWait-2-ex-generic.c"131 #undef LOG_GROUP132 #include "generic/RTSemEventWaitNoResume-2-ex-generic.c"133 #undef LOG_GROUP134 #include "generic/RTSemEventMultiWait-2-ex-generic.c"135 #undef LOG_GROUP136 #include "generic/RTSemEventMultiWaitNoResume-2-ex-generic.c"137 #undef LOG_GROUP138 #include "generic/RTTimerCreate-generic.c"139 #undef LOG_GROUP140 #include "generic/errvars-generic.c"141 #undef LOG_GROUP142 #include "generic/mppresent-generic.c"143 #undef LOG_GROUP144 #include "generic/uuid-generic.c"145 #undef LOG_GROUP146 #include "VBox/log-vbox.c"147 87 148 #ifdef RT_ARCH_AMD64149 # undef LOG_GROUP150 # include "common/alloc/heapsimple.c"151 #endif152 153 #if 0 /*def RT_ARCH_X86 - iprt/nocrt/limit.h clashes.*/154 # include "common/math/gcc/divdi3.c"155 # include "common/math/gcc/moddi3.c"156 # include "common/math/gcc/udivdi3.c"157 # include "common/math/gcc/udivmoddi4.c"158 # include "common/math/gcc/umoddi3.c"159 # include "common/math/gcc/qdivrem.c"160 #endif161 162 163 -
trunk/src/VBox/HostDrivers/Support/linux/combined-agnostic2.c
r85519 r85523 29 29 #include <VBox/log.h> 30 30 31 #undef LOG_GROUP32 #include "r0drv/alloc-r0drv.c"33 #undef LOG_GROUP34 #include "r0drv/initterm-r0drv.c"35 #undef LOG_GROUP36 #include "r0drv/memobj-r0drv.c"37 #undef LOG_GROUP38 #include "r0drv/mpnotification-r0drv.c"39 #undef LOG_GROUP40 #include "r0drv/powernotification-r0drv.c"41 #undef LOG_GROUP42 #include "r0drv/generic/semspinmutex-r0drv-generic.c"43 #undef LOG_GROUP44 #include "common/alloc/alloc.c"45 #undef LOG_GROUP46 #include "common/checksum/crc32.c"47 #undef LOG_GROUP48 #include "common/checksum/ipv4.c"49 #undef LOG_GROUP50 #include "common/checksum/ipv6.c"51 #undef LOG_GROUP52 #include "common/err/errinfo.c"53 #undef LOG_GROUP54 #include "common/log/log.c"55 #undef LOG_GROUP56 #include "common/log/logellipsis.c"57 #undef LOG_GROUP58 #include "common/log/logrel.c"59 #undef LOG_GROUP60 #include "common/log/logrelellipsis.c"61 #undef LOG_GROUP62 #include "common/log/logcom.c"63 #undef LOG_GROUP64 #include "common/log/logformat.c"65 #undef LOG_GROUP66 #include "common/misc/RTAssertMsg1Weak.c"67 #undef LOG_GROUP68 #include "common/misc/RTAssertMsg2.c"69 #undef LOG_GROUP70 #include "common/misc/RTAssertMsg2Add.c"71 #undef LOG_GROUP72 #include "common/misc/RTAssertMsg2AddWeak.c"73 #undef LOG_GROUP74 #include "common/misc/RTAssertMsg2AddWeakV.c"75 #undef LOG_GROUP76 #include "common/misc/RTAssertMsg2Weak.c"77 #undef LOG_GROUP78 #include "common/misc/RTAssertMsg2WeakV.c"79 #undef LOG_GROUP80 #include "common/misc/assert.c"81 #undef LOG_GROUP82 #include "common/misc/handletable.c"83 #undef LOG_GROUP84 #include "common/misc/handletablectx.c"85 #undef LOG_GROUP86 #include "common/misc/thread.c"87 31 #undef LOG_GROUP 88 32 #include "common/string/RTStrCat.c" … … 151 95 #endif 152 96 153 #if 0 /*def RT_ARCH_X86 - iprt/nocrt/limit.h clashes.*/154 # include "common/math/gcc/divdi3.c"155 # include "common/math/gcc/moddi3.c"156 # include "common/math/gcc/udivdi3.c"157 # include "common/math/gcc/udivmoddi4.c"158 # include "common/math/gcc/umoddi3.c"159 # include "common/math/gcc/qdivrem.c"160 #endif161 162 163 -
trunk/src/VBox/HostDrivers/Support/linux/files_vboxdrv
r85519 r85523 85 85 ${PATH_ROOT}/include/VBox/vmm/hm_svm.h=>include/VBox/vmm/hm_svm.h \ 86 86 ${PATH_ROOT}/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c=>linux/SUPDrv-linux.c \ 87 ${PATH_ROOT}/src/VBox/HostDrivers/Support/linux/combined-agnostic.c=>combined-agnostic.c \ 87 ${PATH_ROOT}/src/VBox/HostDrivers/Support/linux/combined-agnostic1.c=>combined-agnostic1.c \ 88 ${PATH_ROOT}/src/VBox/HostDrivers/Support/linux/combined-agnostic2.c=>combined-agnostic2.c \ 88 89 ${PATH_ROOT}/src/VBox/HostDrivers/Support/linux/combined-os-specific.c=>combined-os-specific.c \ 89 90 ${PATH_ROOT}/src/VBox/HostDrivers/Support/SUPDrv.cpp=>SUPDrv.c \
Note:
See TracChangeset
for help on using the changeset viewer.