- Timestamp:
- Apr 5, 2023 8:19:50 AM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/NEMR3Native-darwin.cpp
r98103 r99292 4444 4444 RT_NOREF(HCPhysPrev, HCPhysNew, pvNewR3, fPageProt, enmType); 4445 4445 4446 nemR3DarwinUnmap(pVM, GCPhys, X86_PAGE_SIZE, pu2State); 4446 int rc = nemR3DarwinUnmap(pVM, GCPhys, X86_PAGE_SIZE, pu2State); 4447 if (RT_SUCCESS(rc)) 4448 { 4449 rc = nemR3DarwinMap(pVM, GCPhys, pvNewR3, X86_PAGE_SIZE, fPageProt, pu2State); 4450 AssertLogRelMsgRC(rc, ("NEMHCNotifyPhysPageChanged: nemR3DarwinMap(,%p,%RGp,%RGp,) -> %Rrc\n", 4451 pvNewR3, GCPhys, X86_PAGE_SIZE, rc)); 4452 } 4453 else 4454 AssertReleaseFailed(); 4447 4455 } 4448 4456
Note:
See TracChangeset
for help on using the changeset viewer.