Changeset 95134 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- May 27, 2022 2:50:17 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/CPUMR0.cpp
r95123 r95134 521 521 522 522 /* Notify the support driver prior to loading the guest-FPU register state. */ 523 SUPR0FpuBegin(false /* unused */); 523 SUPR0FpuBegin(VMMR0ThreadCtxHookIsEnabled(pVCpu)); 524 /** @todo use return value? Currently skipping that to be on the safe side 525 * wrt. extended state (linux). */ 524 526 525 527 if (!pVM->cpum.s.HostFeatures.fLeakyFxSR) … … 591 593 592 594 /* Notify the support driver after loading the host-FPU register state. */ 593 SUPR0FpuEnd( false /* unused */);595 SUPR0FpuEnd(VMMR0ThreadCtxHookIsEnabled(pVCpu)); 594 596 } 595 597 else
Note:
See TracChangeset
for help on using the changeset viewer.