diff options
| author | Wenchao Xia | 2014-06-18 08:43:34 +0200 |
|---|---|---|
| committer | Luiz Capitulino | 2014-06-23 17:01:25 +0200 |
| commit | 0aab9ec33e1bcfc46644ed49b777d67caf3a75d0 (patch) | |
| tree | 0aefbc3b1d65b9055e4da3af8f744be75e3b22c6 | |
| parent | qapi event: convert SHUTDOWN (diff) | |
| download | qemu-0aab9ec33e1bcfc46644ed49b777d67caf3a75d0.tar.gz qemu-0aab9ec33e1bcfc46644ed49b777d67caf3a75d0.tar.xz qemu-0aab9ec33e1bcfc46644ed49b777d67caf3a75d0.zip | |
qapi event: convert POWERDOWN
There is no existing comments for POWERDOWN in doc/qmp/qmp-events.txt,
so no change on it like other conversion patch.
Signed-off-by: Wenchao Xia <wenchaoqemu@gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
| -rw-r--r-- | qapi-event.json | 10 | ||||
| -rw-r--r-- | vl.c | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/qapi-event.json b/qapi-event.json index 7a6e6bf7d4..ca08289aec 100644 --- a/qapi-event.json +++ b/qapi-event.json @@ -10,3 +10,13 @@ # Since: 0.12.0 ## { 'event': 'SHUTDOWN' } + +## +# @POWERDOWN +# +# Emitted when the virtual machine is powered down through the power control +# system, such as via ACPI. +# +# Since: 0.12.0 +## +{ 'event': 'POWERDOWN' } @@ -1932,7 +1932,7 @@ void qemu_system_shutdown_request(void) static void qemu_system_powerdown(void) { - monitor_protocol_event(QEVENT_POWERDOWN, NULL); + qapi_event_send_powerdown(&error_abort); notifier_list_notify(&powerdown_notifiers, NULL); } |
