Changeset 72693 in vbox
- Timestamp:
- Jun 26, 2018 12:36:47 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
include/VBox/sup.h (modified) (1 diff)
-
src/VBox/HostDrivers/Support/SUPDrv.cpp (modified) (1 diff)
-
src/VBox/HostDrivers/Support/SUPDrvIOC.h (modified) (1 diff)
-
src/VBox/HostDrivers/Support/SUPLib.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/sup.h
r72326 r72693 2012 2012 SUPR0DECL(uint32_t) SUPR0GetKernelFeatures(void); 2013 2013 2014 #ifdef ___iprt_log_h 2015 /** @copydoc RTLogGetDefaultInstanceEx 2016 * @remarks To allow overriding RTLogGetDefaultInstanceEx locally. */ 2017 SUPR0DECL(PRTLOGGER) SUPR0GetDefaultLogInstanceEx(uint32_t fFlagsAndGroup); 2018 /** @copydoc RTLogRelGetDefaultInstanceEx 2019 * @remarks To allow overriding RTLogRelGetDefaultInstanceEx locally. */ 2020 SUPR0DECL(PRTLOGGER) SUPR0GetDefaultLogRelInstanceEx(uint32_t fFlagsAndGroup); 2021 #endif 2022 2014 2023 2015 2024 /** @name Absolute symbols -
trunk/src/VBox/HostDrivers/Support/SUPDrv.cpp
r71889 r72693 277 277 { "RTLogGetDefaultInstance", (void *)(uintptr_t)RTLogGetDefaultInstance }, 278 278 { "RTLogGetDefaultInstanceEx", (void *)(uintptr_t)RTLogGetDefaultInstanceEx }, 279 { "SUPR0GetDefaultLogInstanceEx", (void *)(uintptr_t)RTLogGetDefaultInstanceEx }, 279 280 { "RTLogLoggerExV", (void *)(uintptr_t)RTLogLoggerExV }, 280 281 { "RTLogPrintfV", (void *)(uintptr_t)RTLogPrintfV }, 281 282 { "RTLogRelGetDefaultInstance", (void *)(uintptr_t)RTLogRelGetDefaultInstance }, 282 283 { "RTLogRelGetDefaultInstanceEx", (void *)(uintptr_t)RTLogRelGetDefaultInstanceEx }, 284 { "SUPR0GetDefaultLogRelInstanceEx", (void *)(uintptr_t)RTLogRelGetDefaultInstanceEx }, 283 285 { "RTLogSetDefaultInstanceThread", (void *)(uintptr_t)RTLogSetDefaultInstanceThread }, 284 286 { "RTMemAllocExTag", (void *)(uintptr_t)RTMemAllocExTag }, -
trunk/src/VBox/HostDrivers/Support/SUPDrvIOC.h
r71198 r72693 224 224 * @remarks 0x002a0000 is used by 5.1. The next version number must be 0x002b0000. 225 225 */ 226 #define SUPDRV_IOC_VERSION 0x0029000 4226 #define SUPDRV_IOC_VERSION 0x00290005 227 227 228 228 /** SUP_IOCTL_COOKIE. */ -
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r72326 r72693 277 277 CookieReq.u.In.u32ReqVersion = SUPDRV_IOC_VERSION; 278 278 const uint32_t uMinVersion = (SUPDRV_IOC_VERSION & 0xffff0000) == 0x00290000 279 ? 0x0029000 4279 ? 0x00290005 280 280 : SUPDRV_IOC_VERSION & 0xffff0000; 281 281 CookieReq.u.In.u32MinVersion = uMinVersion;
Note:
See TracChangeset
for help on using the changeset viewer.

