Changeset 91789 in vbox for trunk/src/VBox/HostDrivers/Support/linux
- Timestamp:
- Oct 17, 2021 6:16:11 PM (3 years ago)
- Location:
- trunk/src/VBox/HostDrivers/Support/linux
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/linux/Makefile
r90829 r91789 85 85 common/log/logcom.o \ 86 86 common/log/logformat.o \ 87 common/log/RTLogCreateEx.o \ 87 88 common/misc/RTAssertMsg1Weak.o \ 88 89 common/misc/RTAssertMsg2.o \ … … 105 106 common/string/stringalloc.o \ 106 107 common/string/strformat.o \ 108 common/string/RTStrFormat.o \ 107 109 common/string/strformatnum.o \ 108 110 common/string/strformattype.o \ 109 111 common/string/strprintf.o \ 112 common/string/strprintf-ellipsis.o \ 110 113 common/string/strprintf2.o \ 114 common/string/strprintf2-ellipsis.o \ 111 115 common/string/strtonum.o \ 112 116 common/table/avlpv.o \ -
trunk/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c
r91552 r91789 1694 1694 1695 1695 1696 RTDECL(int) SUPR0Printf(const char *pszFormat, ...) 1697 { 1698 va_list va; 1696 RTDECL(int) SUPR0PrintfV(const char *pszFormat, va_list va) 1697 { 1699 1698 char szMsg[512]; 1700 1699 IPRT_LINUX_SAVE_EFL_AC(); 1701 1700 1702 va_start(va, pszFormat);1703 1701 RTStrPrintfV(szMsg, sizeof(szMsg) - 1, pszFormat, va); 1704 va_end(va);1705 1702 szMsg[sizeof(szMsg) - 1] = '\0'; 1706 1703 -
trunk/src/VBox/HostDrivers/Support/linux/combined-agnostic1.c
r85523 r91789 64 64 #include "common/log/logformat.c" 65 65 #undef LOG_GROUP 66 #include "common/log/RTLogCreateEx.c" 67 #undef LOG_GROUP 66 68 #include "common/misc/RTAssertMsg1Weak.c" 67 69 #undef LOG_GROUP -
trunk/src/VBox/HostDrivers/Support/linux/combined-agnostic2.c
r90829 r91789 48 48 #include "common/string/strformat.c" 49 49 #undef LOG_GROUP 50 #include "common/string/RTStrFormat.c" 51 #undef LOG_GROUP 50 52 #include "common/string/strformatnum.c" 51 53 #undef LOG_GROUP … … 54 56 #include "common/string/strprintf.c" 55 57 #undef LOG_GROUP 58 #include "common/string/strprintf-ellipsis.c" 59 #undef LOG_GROUP 56 60 #include "common/string/strprintf2.c" 61 #undef LOG_GROUP 62 #include "common/string/strprintf2-ellipsis.c" 57 63 #undef LOG_GROUP 58 64 #include "common/string/strtonum.c" -
trunk/src/VBox/HostDrivers/Support/linux/files_vboxdrv
r90829 r91789 114 114 ${PATH_ROOT}/src/VBox/Runtime/common/log/logcom.cpp=>common/log/logcom.c \ 115 115 ${PATH_ROOT}/src/VBox/Runtime/common/log/logformat.cpp=>common/log/logformat.c \ 116 ${PATH_ROOT}/src/VBox/Runtime/common/log/RTLogCreateEx.cpp=>common/log/RTLogCreateEx.c \ 116 117 ${PATH_ROOT}/src/VBox/Runtime/common/math/gcc/divdi3.c=>math/gcc/divdi3.c \ 117 118 ${PATH_ROOT}/src/VBox/Runtime/common/math/gcc/divmoddi4.c=>math/gcc/divmoddi4.c \ … … 143 144 ${PATH_ROOT}/src/VBox/Runtime/common/string/stringalloc.cpp=>common/string/stringalloc.c \ 144 145 ${PATH_ROOT}/src/VBox/Runtime/common/string/strformat.cpp=>common/string/strformat.c \ 146 ${PATH_ROOT}/src/VBox/Runtime/common/string/RTStrFormat.cpp=>common/string/RTStrFormat.c \ 145 147 ${PATH_ROOT}/src/VBox/Runtime/common/string/strformatnum.cpp=>common/string/strformatnum.c \ 146 148 ${PATH_ROOT}/src/VBox/Runtime/common/string/strformatrt.cpp=>common/string/strformatrt.c \ 147 149 ${PATH_ROOT}/src/VBox/Runtime/common/string/strformattype.cpp=>common/string/strformattype.c \ 148 150 ${PATH_ROOT}/src/VBox/Runtime/common/string/strprintf.cpp=>common/string/strprintf.c \ 151 ${PATH_ROOT}/src/VBox/Runtime/common/string/strprintf-ellipsis.cpp=>common/string/strprintf-ellipsis.c \ 149 152 ${PATH_ROOT}/src/VBox/Runtime/common/string/strprintf2.cpp=>common/string/strprintf2.c \ 153 ${PATH_ROOT}/src/VBox/Runtime/common/string/strprintf2-ellipsis.cpp=>common/string/strprintf2-ellipsis.c \ 150 154 ${PATH_ROOT}/src/VBox/Runtime/common/string/strtonum.cpp=>common/string/strtonum.c \ 151 155 ${PATH_ROOT}/src/VBox/Runtime/common/table/avlpv.cpp=>common/table/avlpv.c \
Note:
See TracChangeset
for help on using the changeset viewer.