Changeset 13862 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Nov 5, 2008 1:54:02 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38859
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/darwin/SUPDrv-darwin.cpp
r12808 r13862 441 441 || iCmd == SUP_IOCTL_FAST_DO_HWACC_RUN 442 442 || iCmd == SUP_IOCTL_FAST_DO_NOP) 443 return supdrvIOCtlFast( iCmd, &g_DevExt, pSession);443 return supdrvIOCtlFast(uCmd, 0 /* @todo VMCPU id. */, &g_DevExt, pSession); 444 444 return VBoxDrvDarwinIOCtlSlow(pSession, iCmd, pData, pProcess); 445 445 } -
trunk/src/VBox/HostDrivers/Support/freebsd/SUPDrv-freebsd.c
r11725 r13862 371 371 || ulCmd == SUP_IOCTL_FAST_DO_HWACC_RUN 372 372 || ulCmd == SUP_IOCTL_FAST_DO_NOP) 373 return supdrvIOCtlFast(u lCmd, &g_VBoxDrvFreeBSDDevExt, pSession);373 return supdrvIOCtlFast(uCmd, 0 /* @todo VMCPU id. */, &g_VBoxDrvFreeBSDDevExt, pSession); 374 374 375 375 return VBoxDrvFreeBSDIOCtlSlow(pSession, ulCmd, pvData, pTd); -
trunk/src/VBox/HostDrivers/Support/os2/SUPDrv-os2.cpp
r13837 r13862 258 258 * Dispatch the fast IOCtl. 259 259 */ 260 supdrvIOCtlFast(iFunction, &g_DevExt, pSession);260 supdrvIOCtlFast(iFunction, 0, &g_DevExt, pSession); 261 261 return 0; 262 262 }
Note:
See TracChangeset
for help on using the changeset viewer.