Changeset 16030 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Jan 19, 2009 5:24:30 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/freebsd/SUPDrv-freebsd.c
r13865 r16030 271 271 * @param iFd The file descriptor index(?). Pre FreeBSD 7.0. 272 272 */ 273 #if FreeBSD >= 700 /* figure when and how to check properly */273 #if __FreeBSD__ >= 7 274 274 static int VBoxDrvFreeBSDOpen(struct cdev *pDev, int fOpen, struct thread *pTd, struct file *pFd) 275 275 #else … … 371 371 || ulCmd == SUP_IOCTL_FAST_DO_HWACC_RUN 372 372 || ulCmd == SUP_IOCTL_FAST_DO_NOP) 373 return supdrvIOCtlFast(u Cmd, *(uint32_t *)pvData, &g_VBoxDrvFreeBSDDevExt, pSession);373 return supdrvIOCtlFast(ulCmd, *(uint32_t *)pvData, &g_VBoxDrvFreeBSDDevExt, pSession); 374 374 375 375 return VBoxDrvFreeBSDIOCtlSlow(pSession, ulCmd, pvData, pTd);
Note:
See TracChangeset
for help on using the changeset viewer.