- Timestamp:
- Aug 3, 2021 9:19:13 AM (4 years ago)
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.cpp
r90419 r90489 389 389 { "RTSemEventDestroy", (void *)(uintptr_t)RTSemEventDestroy }, 390 390 { "RTSemEventGetResolution", (void *)(uintptr_t)RTSemEventGetResolution }, 391 { "RTSemEventIsSignalSafe", (void *)(uintptr_t)RTSemEventIsSignalSafe }, 391 392 { "RTSemEventMultiCreate", (void *)(uintptr_t)RTSemEventMultiCreate }, 392 393 { "RTSemEventMultiDestroy", (void *)(uintptr_t)RTSemEventMultiDestroy }, 393 394 { "RTSemEventMultiGetResolution", (void *)(uintptr_t)RTSemEventMultiGetResolution }, 395 { "RTSemEventMultiIsSignalSafe", (void *)(uintptr_t)RTSemEventMultiIsSignalSafe }, 394 396 { "RTSemEventMultiReset", (void *)(uintptr_t)RTSemEventMultiReset }, 395 397 { "RTSemEventMultiSignal", (void *)(uintptr_t)RTSemEventMultiSignal }, -
trunk/src/VBox/HostDrivers/Support/SUPDrvIOC.h
r90419 r90489 223 223 * - Remove pvVMMR0 from SUPLDRLOAD. 224 224 */ 225 #define SUPDRV_IOC_VERSION 0x0030000 2225 #define SUPDRV_IOC_VERSION 0x00300003 226 226 227 227 /** SUP_IOCTL_COOKIE. */ -
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r90419 r90489 279 279 CookieReq.u.In.u32ReqVersion = SUPDRV_IOC_VERSION; 280 280 const uint32_t uMinVersion = (SUPDRV_IOC_VERSION & 0xffff0000) == 0x00300000 281 ? 0x0030000 2281 ? 0x00300003 282 282 : SUPDRV_IOC_VERSION & 0xffff0000; 283 283 CookieReq.u.In.u32MinVersion = uMinVersion;
Note:
See TracChangeset
for help on using the changeset viewer.