Changeset 54467 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Feb 24, 2015 6:23:18 PM (10 years ago)
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.cpp
r54375 r54467 245 245 { "RTMpCpuIdFromSetIndex", (void *)RTMpCpuIdFromSetIndex }, 246 246 { "RTMpCpuIdToSetIndex", (void *)RTMpCpuIdToSetIndex }, 247 { "RTMpCurSetIndex", (void *)RTMpCurSetIndex }, 248 { "RTMpCurSetIndexAndId", (void *)RTMpCurSetIndexAndId }, 247 249 { "RTMpGetArraySize", (void *)RTMpGetArraySize }, 248 250 { "RTMpGetCount", (void *)RTMpGetCount }, -
trunk/src/VBox/HostDrivers/Support/SUPDrvIOC.h
r54373 r54467 215 215 * - (nothing) 216 216 */ 217 #define SUPDRV_IOC_VERSION 0x001f000 2217 #define SUPDRV_IOC_VERSION 0x001f0003 218 218 219 219 /** SUP_IOCTL_COOKIE. */ -
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r54339 r54467 280 280 CookieReq.u.In.u32ReqVersion = SUPDRV_IOC_VERSION; 281 281 const uint32_t uMinVersion = (SUPDRV_IOC_VERSION & 0xffff0000) == 0x001f0000 282 ? 0x001f000 2282 ? 0x001f0003 283 283 : SUPDRV_IOC_VERSION & 0xffff0000; 284 284 CookieReq.u.In.u32MinVersion = uMinVersion;
Note:
See TracChangeset
for help on using the changeset viewer.