Changeset 48132 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Aug 28, 2013 5:27:43 PM (11 years ago)
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/Makefile.kmk
r46045 r48132 275 275 ifdef VBOX_WITHOUT_NATIVE_R0_LOADER 276 276 VBoxDrv_DEFS.win += VBOX_WITHOUT_NATIVE_R0_LOADER 277 endif278 ifdef VBOX_WITH_VMMR0_DISABLE_PREEMPTION279 VBoxDrv_DEFS.win += VBOX_WITH_VMMR0_DISABLE_PREEMPTION280 277 endif 281 278 -
trunk/src/VBox/HostDrivers/Support/win/SUPDrv-win.cpp
r47541 r48132 452 452 && pSession->fUnrestricted == true) 453 453 { 454 #ifdef VBOX_WITH_VMMR0_DISABLE_PREEMPTION455 454 int rc = supdrvIOCtlFast(ulCmd, (unsigned)(uintptr_t)pIrp->UserBuffer /* VMCPU id */, pDevExt, pSession); 456 #else 455 456 #if 0 /* When preemption was not used i.e. !VBOX_WITH_VMMR0_DISABLE_PREEMPTION. That's no longer required. */ 457 457 /* Raise the IRQL to DISPATCH_LEVEL to prevent Windows from rescheduling us to another CPU/core. */ 458 458 Assert(KeGetCurrentIrql() <= DISPATCH_LEVEL);
Note:
See TracChangeset
for help on using the changeset viewer.