Changeset 19671 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- May 13, 2009 6:28:58 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 47273
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/freebsd/SUPDrv-freebsd.c
r19592 r19671 44 44 #include <sys/conf.h> 45 45 #include <sys/uio.h> 46 #include <sys/proc.h>47 #include <sys/sched.h>48 46 49 47 #include "../SUPDrvInternal.h" … … 396 394 || ulCmd == SUP_IOCTL_FAST_DO_HWACC_RUN 397 395 || ulCmd == SUP_IOCTL_FAST_DO_NOP) 398 { 399 sched_pin(); 400 critical_enter(); 401 int rc = supdrvIOCtlFast(ulCmd, *(uint32_t *)pvData, &g_VBoxDrvFreeBSDDevExt, pSession); 402 critical_exit(); 403 sched_unpin(); 404 return rc; 405 } 396 return supdrvIOCtlFast(ulCmd, *(uint32_t *)pvData, &g_VBoxDrvFreeBSDDevExt, pSession); 406 397 407 398 return VBoxDrvFreeBSDIOCtlSlow(pSession, ulCmd, pvData, pTd);
Note:
See TracChangeset
for help on using the changeset viewer.