Changeset 13306 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Oct 15, 2008 9:17:04 PM (16 years ago)
- Location:
- trunk/src/VBox/HostDrivers/Support/linux
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/linux/Makefile
r13000 r13306 90 90 r0drv/linux/time-r0drv-linux.o \ 91 91 r0drv/linux/timer-r0drv-linux.o \ 92 common/err/RTErrConvertFromErrno.o 92 common/err/RTErrConvertFromErrno.o \ 93 generic/RTAssertShouldPanic-generic.o 93 94 ifeq ($(BUILD_TARGET_ARCH),x86) 94 95 OBJS += math/gcc/divdi3.o \ … … 237 238 238 239 # By default we use remap_pfn_range() kernel API to make kernel pages 239 # visible for userland. Unfortuately, it leads to situation that 240 # during debug session all structures on that page (such as PVM pointer) 241 # are not accessible to the debugger (see #3214). 242 # This code enables experimental support 240 # visible for userland. Unfortuately, it leads to situation that 241 # during debug session all structures on that page (such as PVM pointer) 242 # are not accessible to the debugger (see #3214). 243 # This code enables experimental support 243 244 # for vm_insert_page() kernel API, allowing to export kernel pages 244 # to the userland in more debugger-friendly way. Due to stability 245 # to the userland in more debugger-friendly way. Due to stability 245 246 # concerns, not enabled by default yet. 246 247 ifdef VBOX_USE_INSERT_PAGE -
trunk/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c
r12360 r13306 946 946 947 947 /** @todo move to IPRT! */ 948 RTDECL(bool) RTAssertDoBreakpoint(void)949 {950 return true;951 }952 953 954 /** @todo move to IPRT! */955 948 RTDECL(void) AssertMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) 956 949 { -
trunk/src/VBox/HostDrivers/Support/linux/files_vboxdrv
r12099 r13306 89 89 ${PATH_ROOT}/src/VBox/Runtime/include/internal/string.h=>include/internal/string.h \ 90 90 ${PATH_ROOT}/src/VBox/Runtime/include/internal/thread.h=>include/internal/thread.h \ 91 ${PATH_ROOT}/src/VBox/Runtime/generic/RTAssertShouldPanic-generic.cpp=>generic/RTAssertShouldPanic-generic.c \ 91 92 ${PATH_ROOT}/src/VBox/Runtime/generic/RTLogWriteStdErr-stub-generic.cpp=>generic/RTLogWriteStdErr-stub-generic.c \ 92 93 ${PATH_ROOT}/src/VBox/Runtime/generic/RTLogWriteStdOut-stub-generic.cpp=>generic/RTLogWriteStdOut-stub-generic.c \
Note:
See TracChangeset
for help on using the changeset viewer.