Changeset 72693 in vbox for trunk/src/VBox
- Timestamp:
- Jun 26, 2018 12:36:47 PM (7 years ago)
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
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.