]> git.proxmox.com Git - mirror_qemu.git/commit - monitor.c
QMP: Asynchronous events infrastructure
authorLuiz Capitulino <lcapitulino@redhat.com>
Fri, 27 Nov 2009 00:59:03 +0000 (22:59 -0200)
committerAnthony Liguori <aliguori@us.ibm.com>
Thu, 3 Dec 2009 15:41:23 +0000 (09:41 -0600)
commit0d1ea871b09fc74b4a2085150980b43bd1973744
treea970f0e1751e0a6e9bb3751ef1d5b72fa8b0385b
parent5e23f480df7a451dab6f82c4f13520b089daaf0e
QMP: Asynchronous events infrastructure

Asynchronous events are generated with a call to
monitor_protocol_event().

This function builds the right data-type and emit the event
right away. The emitted data is always a JSON object and its
format is as follows:

{ "event": json-string,
  "timestamp": { "seconds": json-number, "microseconds": json-number },
  "data": json-value }

This design is based on ideas by Amit Shah <amit.shah@redhat.com>.

Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
monitor.c
monitor.h
qemu-tool.c