Changeset 75875 in vbox for trunk/src/VBox/Devices/VMMDev
- Timestamp:
- Dec 2, 2018 5:04:57 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127079
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/VMMDev/VMMDev.cpp
r75853 r75875 360 360 */ 361 361 VMSTATE enmVMState = PDMDevHlpVMState(pThis->pDevInsR3); 362 /** @todo r=bird: Shouldn't there be more states here? Wouldn't we drop363 * notifications now when we're in the process of suspending or364 * similar? */365 362 if ( enmVMState == VMSTATE_RUNNING 366 || enmVMState == VMSTATE_RUNNING_LS) 363 || enmVMState == VMSTATE_RUNNING_LS 364 || enmVMState == VMSTATE_LOADING 365 || enmVMState == VMSTATE_RESUMING 366 || enmVMState == VMSTATE_SUSPENDING 367 || enmVMState == VMSTATE_SUSPENDING_LS 368 || enmVMState == VMSTATE_SUSPENDING_EXT_LS 369 || enmVMState == VMSTATE_DEBUGGING 370 || enmVMState == VMSTATE_DEBUGGING_LS 371 ) 367 372 { 368 373 PDMCritSectEnter(&pThis->CritSect, VERR_IGNORED); … … 370 375 PDMCritSectLeave(&pThis->CritSect); 371 376 } 377 else 378 LogRel(("VMMDevNotifyGuest: fAddEvents=%#x ignored because enmVMState=%d\n", fAddEvents, enmVMState)); 372 379 } 373 380
Note:
See TracChangeset
for help on using the changeset viewer.