Changeset 4911 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Sep 20, 2007 8:27:28 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/win/SUPDrv-win.cpp
r4831 r4911 599 599 else 600 600 { 601 RTCCUINTREG xFL = ASMGetFlags(); 602 ASMIntDisable(); 601 KIRQL oldIrql; 602 603 Assert(KeGetCurrentIrql() <= DISPATCH_LEVEL); 604 KeRaiseIrql(DISPATCH_LEVEL, &oldIrql); 603 605 604 606 /* … … 620 622 supdrvGipUpdate(pGip, supdrvOSMonotime()); 621 623 622 ASMSetFlags(xFL);624 KeLowerIrql(oldIrql); 623 625 } 624 626 }
Note:
See TracChangeset
for help on using the changeset viewer.