VBOX: Adjust the VM priority class to the idle priority class on Windows. I only vaguely remember a warning from Frank about the realtime clock possibly falling out of alignment between guest/host operating systems. We may have to switch it back if the guest OS panics or something like that.

This commit is contained in:
Rom Walton 2013-10-22 14:47:20 -04:00
parent 67c4db3e66
commit 3ec027d738
1 changed files with 1 additions and 1 deletions

View File

@ -1810,7 +1810,7 @@ void VBOX_VM::lower_vm_process_priority() {
} }
#else #else
if (vm_pid_handle) { if (vm_pid_handle) {
SetPriorityClass(vm_pid_handle, BELOW_NORMAL_PRIORITY_CLASS); SetPriorityClass(vm_pid_handle, IDLE_PRIORITY_CLASS);
} }
#endif #endif
} }