Changeset 72778 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Jun 29, 2018 8:02:35 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123320
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.cpp
r72693 r72778 277 277 { "RTLogGetDefaultInstance", (void *)(uintptr_t)RTLogGetDefaultInstance }, 278 278 { "RTLogGetDefaultInstanceEx", (void *)(uintptr_t)RTLogGetDefaultInstanceEx }, 279 { "SUPR0GetDefaultLogInstanceEx", (void *)(uintptr_t) RTLogGetDefaultInstanceEx },279 { "SUPR0GetDefaultLogInstanceEx", (void *)(uintptr_t)SUPR0GetDefaultLogInstanceEx }, 280 280 { "RTLogLoggerExV", (void *)(uintptr_t)RTLogLoggerExV }, 281 281 { "RTLogPrintfV", (void *)(uintptr_t)RTLogPrintfV }, 282 282 { "RTLogRelGetDefaultInstance", (void *)(uintptr_t)RTLogRelGetDefaultInstance }, 283 283 { "RTLogRelGetDefaultInstanceEx", (void *)(uintptr_t)RTLogRelGetDefaultInstanceEx }, 284 { "SUPR0GetDefaultLogRelInstanceEx", (void *)(uintptr_t) RTLogRelGetDefaultInstanceEx },284 { "SUPR0GetDefaultLogRelInstanceEx", (void *)(uintptr_t)SUPR0GetDefaultLogRelInstanceEx }, 285 285 { "RTLogSetDefaultInstanceThread", (void *)(uintptr_t)RTLogSetDefaultInstanceThread }, 286 286 { "RTMemAllocExTag", (void *)(uintptr_t)RTMemAllocExTag }, … … 3177 3177 3178 3178 3179 /** @copydoc RTLogGetDefaultInstanceEx 3180 * @remarks To allow overriding RTLogGetDefaultInstanceEx locally. */ 3181 SUPR0DECL(struct RTLOGGER *) SUPR0GetDefaultLogInstanceEx(uint32_t fFlagsAndGroup) 3182 { 3183 return RTLogGetDefaultInstanceEx(fFlagsAndGroup); 3184 } 3185 3186 3187 /** @copydoc RTLogRelGetDefaultInstanceEx 3188 * @remarks To allow overriding RTLogRelGetDefaultInstanceEx locally. */ 3189 SUPR0DECL(struct RTLOGGER *) SUPR0GetDefaultLogRelInstanceEx(uint32_t fFlagsAndGroup) 3190 { 3191 return RTLogRelGetDefaultInstanceEx(fFlagsAndGroup); 3192 } 3193 3194 3179 3195 /** 3180 3196 * Lock pages. -
trunk/src/VBox/HostDrivers/Support/SUPDrvIOC.h
r72693 r72778 224 224 * @remarks 0x002a0000 is used by 5.1. The next version number must be 0x002b0000. 225 225 */ 226 #define SUPDRV_IOC_VERSION 0x0029000 5226 #define SUPDRV_IOC_VERSION 0x00290006 227 227 228 228 /** SUP_IOCTL_COOKIE. */ -
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r72693 r72778 277 277 CookieReq.u.In.u32ReqVersion = SUPDRV_IOC_VERSION; 278 278 const uint32_t uMinVersion = (SUPDRV_IOC_VERSION & 0xffff0000) == 0x00290000 279 ? 0x0029000 5279 ? 0x00290006 280 280 : SUPDRV_IOC_VERSION & 0xffff0000; 281 281 CookieReq.u.In.u32MinVersion = uMinVersion;
Note:
See TracChangeset
for help on using the changeset viewer.