Changeset 20124 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- May 28, 2009 3:40:06 PM (16 years ago)
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.c
r19932 r20124 261 261 #endif 262 262 /* RTThreadPreemptIsEnabled - not necessary */ 263 /* RTThreadPreemptIsPending - not necessary */ 263 /* RTThreadPreemptIsPending - not necessary */ 264 /* RTThreadPreemptIsPendingTrusty - not necessary */ 264 265 /* RTThreadPreemptDisable - not necessary */ 265 266 DECLASM(void) UNWIND_WRAP(RTThreadPreemptRestore)(RTTHREADPREEMPTSTATE pState); … … 421 422 { "RTThreadPreemptIsEnabled", (void *)RTThreadPreemptIsEnabled }, 422 423 { "RTThreadPreemptIsPending", (void *)RTThreadPreemptIsPending }, 424 { "RTThreadPreemptIsPendingTrusty", (void *)RTThreadPreemptIsPendingTrusty }, 423 425 { "RTThreadPreemptDisable", (void *)RTThreadPreemptDisable }, 424 426 { "RTThreadPreemptRestore", (void *)UNWIND_WRAP(RTThreadPreemptRestore) }, -
trunk/src/VBox/HostDrivers/Support/SUPDrvIOC.h
r19932 r20124 188 188 * and renaming the related IOCtls too. 189 189 */ 190 #define SUPDRV_IOC_VERSION 0x000c000 3190 #define SUPDRV_IOC_VERSION 0x000c0004 191 191 192 192 /** SUP_IOCTL_COOKIE. */ -
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r19892 r20124 260 260 strcpy(CookieReq.u.In.szMagic, SUPCOOKIE_MAGIC); 261 261 CookieReq.u.In.u32ReqVersion = SUPDRV_IOC_VERSION; 262 const uint32_t MinVersion = (SUPDRV_IOC_VERSION & 0xffff0000) == 0x000b0001263 ? 0x000 b0001262 const uint32_t MinVersion = (SUPDRV_IOC_VERSION & 0xffff0000) >= 0x000c0004 263 ? 0x000c0004 264 264 : SUPDRV_IOC_VERSION & 0xffff0000; 265 265 CookieReq.u.In.u32MinVersion = MinVersion; -
trunk/src/VBox/HostDrivers/Support/win/SUPDrvA-win.asm
r19932 r20124 155 155 ;NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, RTThreadPreemptIsEnabled - not necessary 156 156 ;NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, RTThreadPreemptIsPending - not necessary 157 ;NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, RTThreadPreemptIsPendingTrusty - not necessary 157 158 ;NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, RTThreadPreemptDisable - not necessary 158 159 NtWrapDyn2DrvFunctionWithAllRegParams supdrvNtWrap, RTThreadPreemptRestore
Note:
See TracChangeset
for help on using the changeset viewer.