Changeset 19797 in vbox
- Timestamp:
- May 18, 2009 3:28:49 PM (15 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
-
VMEmt.cpp (modified) (2 diffs)
-
VMMGuruMeditation.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMEmt.cpp
r19699 r19797 34 34 #include <VBox/vm.h> 35 35 #include <VBox/uvm.h> 36 #include <VBox/mm.h>37 #include <VBox/pgm.h>38 #include <VBox/iom.h>39 #include <VBox/pdm.h>40 36 41 37 #include <VBox/err.h> … … 228 224 if ( EMGetState(pVCpu) == EMSTATE_GURU_MEDITATION 229 225 && pVM->enmVMState == VMSTATE_RUNNING) 230 {231 Log(("Release locks owned by this EMT\n"));232 /* Release owned locks to make sure other VCPUs can continue in case they were waiting for one. */233 MMR3ReleaseOwnedLocks(pVM);234 PGMR3ReleaseOwnedLocks(pVM);235 PDMR3ReleaseOwnedLocks(pVM);236 IOMR3ReleaseOwnedLocks(pVM);237 EMR3ReleaseOwnedLocks(pVM);238 239 226 vmR3SetState(pVM, VMSTATE_GURU_MEDITATION); 240 }241 227 } 242 228 } -
trunk/src/VBox/VMM/VMMGuruMeditation.cpp
r19679 r19797 30 30 #include "VMMInternal.h" 31 31 #include <VBox/vm.h> 32 #include <VBox/mm.h> 33 #include <VBox/iom.h> 34 #include <VBox/em.h> 32 35 33 36 #include <VBox/err.h> … … 208 211 PCDBGFINFOHLP pHlp = &Hlp.Core; 209 212 vmmR3FatalDumpInfoHlpInit(&Hlp); 213 214 /* Release owned locks to make sure other VCPUs can continue in case they were waiting for one. */ 215 MMR3ReleaseOwnedLocks(pVM); 216 PGMR3ReleaseOwnedLocks(pVM); 217 PDMR3ReleaseOwnedLocks(pVM); 218 IOMR3ReleaseOwnedLocks(pVM); 219 EMR3ReleaseOwnedLocks(pVM); 210 220 211 221 /*
Note:
See TracChangeset
for help on using the changeset viewer.

