Loading docs/qmp/qmp-events.txt +0 −12 Original line number Diff line number Diff line Loading @@ -274,18 +274,6 @@ Example: "data": { "node-name": "1.raw", "sector-num": 345435, "sector-count": 5 }, "timestamp": { "seconds": 1344522075, "microseconds": 745528 } } RESUME ------ Emitted when the Virtual Machine resumes execution. Data: None. Example: { "event": "RESUME", "timestamp": { "seconds": 1271770767, "microseconds": 582542 } } RTC_CHANGE ---------- Loading qapi-event.json +9 −0 Original line number Diff line number Diff line Loading @@ -38,3 +38,12 @@ # Since: 0.12.0 ## { 'event': 'STOP' } ## # @RESUME # # Emitted when the virtual machine resumes execution # # Since: 0.12.0 ## { 'event': 'RESUME' } vl.c +2 −2 Original line number Diff line number Diff line Loading @@ -736,7 +736,7 @@ void vm_start(void) * the STOP event. */ if (runstate_is_running()) { monitor_protocol_event(QEVENT_STOP, NULL); qapi_event_send_stop(&error_abort); } else { cpu_enable_ticks(); runstate_set(RUN_STATE_RUNNING); Loading @@ -744,7 +744,7 @@ void vm_start(void) resume_all_vcpus(); } monitor_protocol_event(QEVENT_RESUME, NULL); qapi_event_send_resume(&error_abort); } Loading Loading
docs/qmp/qmp-events.txt +0 −12 Original line number Diff line number Diff line Loading @@ -274,18 +274,6 @@ Example: "data": { "node-name": "1.raw", "sector-num": 345435, "sector-count": 5 }, "timestamp": { "seconds": 1344522075, "microseconds": 745528 } } RESUME ------ Emitted when the Virtual Machine resumes execution. Data: None. Example: { "event": "RESUME", "timestamp": { "seconds": 1271770767, "microseconds": 582542 } } RTC_CHANGE ---------- Loading
qapi-event.json +9 −0 Original line number Diff line number Diff line Loading @@ -38,3 +38,12 @@ # Since: 0.12.0 ## { 'event': 'STOP' } ## # @RESUME # # Emitted when the virtual machine resumes execution # # Since: 0.12.0 ## { 'event': 'RESUME' }
vl.c +2 −2 Original line number Diff line number Diff line Loading @@ -736,7 +736,7 @@ void vm_start(void) * the STOP event. */ if (runstate_is_running()) { monitor_protocol_event(QEVENT_STOP, NULL); qapi_event_send_stop(&error_abort); } else { cpu_enable_ticks(); runstate_set(RUN_STATE_RUNNING); Loading @@ -744,7 +744,7 @@ void vm_start(void) resume_all_vcpus(); } monitor_protocol_event(QEVENT_RESUME, NULL); qapi_event_send_resume(&error_abort); } Loading