Changeset 36408 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Mar 24, 2011 4:25:47 PM (14 years ago)
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.c
r36344 r36408 425 425 PRTLOGGER pRelLogger; 426 426 rc = RTLogCreate(&pRelLogger, 0 /* fFlags */, "all", 427 "VBOX_RELEASE_LOG", RT_ELEMENTS(s_apszGroups), s_apszGroups, RTLOGDEST_STDOUT | RTLOGDEST_DEBUGGER, 428 NULL /* pfnBeginEnd */, 0 /* cHistory */, 0 /* cbHistoryFileMax */, 0 /* uHistoryTimeMax */, 429 NULL); 427 "VBOX_RELEASE_LOG", RT_ELEMENTS(s_apszGroups), s_apszGroups, RTLOGDEST_STDOUT | RTLOGDEST_DEBUGGER, NULL); 430 428 if (RT_SUCCESS(rc)) 431 429 RTLogRelSetDefaultInstance(pRelLogger); … … 4747 4745 s_apszGroups, 4748 4746 RTLOGDEST_STDOUT | RTLOGDEST_DEBUGGER, 4749 NULL /* pfnBeginEnd */, 0 /* cHistory */, 0 /* cbHistoryFileMax */, 0 /* uHistoryTimeMax */,4750 4747 NULL); 4751 4748 if (RT_SUCCESS(rc)) -
trunk/src/VBox/HostDrivers/Support/freebsd/Makefile
r36254 r36408 85 85 .PATH: ${.CURDIR}/common/string 86 86 SRCS += \ 87 RTStrCopyP.c \ 87 88 strformat.c \ 88 89 strformatrt.c \ -
trunk/src/VBox/HostDrivers/Support/freebsd/files_vboxdrv
r36254 r36408 110 110 ${PATH_ROOT}/src/VBox/Runtime/common/misc/once.cpp=>common/misc/once.c \ 111 111 ${PATH_ROOT}/src/VBox/Runtime/common/misc/thread.cpp=>common/misc/thread.c \ 112 ${PATH_ROOT}/src/VBox/Runtime/common/string/RTStrCopyP.cpp=>common/string/RTStrCopyP.c \ 112 113 ${PATH_ROOT}/src/VBox/Runtime/common/string/strformat.cpp=>common/string/strformat.c \ 113 114 ${PATH_ROOT}/src/VBox/Runtime/common/string/strformatrt.cpp=>common/string/strformatrt.c \ -
trunk/src/VBox/HostDrivers/Support/linux/Makefile
r36293 r36408 120 120 common/misc/handletablectx.o \ 121 121 common/misc/thread.o \ 122 common/string/RTStrCopyP.o \ 122 123 common/string/strformat.o \ 123 124 common/string/strformatrt.o \ -
trunk/src/VBox/HostDrivers/Support/linux/files_vboxdrv
r36254 r36408 112 112 ${PATH_ROOT}/src/VBox/Runtime/common/misc/handletablectx.cpp=>common/misc/handletablectx.c \ 113 113 ${PATH_ROOT}/src/VBox/Runtime/common/misc/thread.cpp=>common/misc/thread.c \ 114 ${PATH_ROOT}/src/VBox/Runtime/common/string/RTStrCopyP.cpp=>common/string/RTStrCopyP.c \ 114 115 ${PATH_ROOT}/src/VBox/Runtime/common/string/strformat.cpp=>common/string/strformat.c \ 115 116 ${PATH_ROOT}/src/VBox/Runtime/common/string/strformatrt.cpp=>common/string/strformatrt.c \
Note:
See TracChangeset
for help on using the changeset viewer.