Changeset 38614 in vbox
- Timestamp:
- Sep 2, 2011 12:33:03 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 73820
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/FTM.cpp
r35346 r38614 1233 1233 bool fSuspended = false; 1234 1234 1235 /* *We don't call VMR3Suspend here to avoid the overhead of state changes and notifications. This1236 * 1235 /* We don't call VMR3Suspend here to avoid the overhead of state changes and notifications. This 1236 * is only a short suspend. 1237 1237 */ 1238 1238 STAM_PROFILE_START(&pVM->ftm.s.StatCheckpointPause, a); 1239 1239 PDMR3Suspend(pVM); 1240 1240 1241 /* *Hack alert: as EM is responsible for dealing with the suspend state. We must do this here ourselves, but only for this EMT.*/1241 /* Hack alert: as EM is responsible for dealing with the suspend state. We must do this here ourselves, but only for this EMT.*/ 1242 1242 EMR3NotifySuspend(pVM); 1243 1243 STAM_PROFILE_STOP(&pVM->ftm.s.StatCheckpointPause, a); … … 1271 1271 AssertRC(rc); 1272 1272 1273 /* *We don't call VMR3Resume here to avoid the overhead of state changes and notifications. This1274 * 1273 /* We don't call VMR3Resume here to avoid the overhead of state changes and notifications. This 1274 * is only a short suspend. 1275 1275 */ 1276 1276 STAM_PROFILE_START(&pVM->ftm.s.StatCheckpointResume, b); … … 1278 1278 PDMR3Resume(pVM); 1279 1279 1280 /* *Hack alert as EM is responsible for dealing with the suspend state. We must do this here ourselves, but only for this EMT.*/1280 /* Hack alert as EM is responsible for dealing with the suspend state. We must do this here ourselves, but only for this EMT.*/ 1281 1281 EMR3NotifyResume(pVM); 1282 1282 STAM_PROFILE_STOP(&pVM->ftm.s.StatCheckpointResume, b);
Note:
See TracChangeset
for help on using the changeset viewer.