d0fb9657a3
Commit e50caf4a5c
("tracing: convert documentation to rST")
converted docs/devel/tracing.txt to docs/devel/tracing.rst.
We still have several references to the old file, so let's fix them
with the following command:
sed -i s/tracing.txt/tracing.rst/ $(git grep -l docs/devel/tracing.txt)
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210517151702.109066-2-sgarzare@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
20 lines
887 B
Plaintext
20 lines
887 B
Plaintext
# See docs/devel/tracing.rst for syntax documentation.
|
|
|
|
# hmp.c
|
|
handle_hmp_command(void *mon, const char *cmdline) "mon %p cmdline: %s"
|
|
|
|
# monitor.c
|
|
monitor_protocol_event_handler(uint32_t event, void *qdict) "event=%d data=%p"
|
|
monitor_protocol_event_emit(uint32_t event, void *data) "event=%d data=%p"
|
|
monitor_protocol_event_queue(uint32_t event, void *qdict, uint64_t rate) "event=%d data=%p rate=%" PRId64
|
|
monitor_suspend(void *ptr, int cnt) "mon %p: %d"
|
|
|
|
# qmp.c
|
|
monitor_qmp_in_band_enqueue(void *req, void *mon, unsigned len) "%p mon %p len %u"
|
|
monitor_qmp_in_band_dequeue(void *req, unsigned len) "%p len %u"
|
|
monitor_qmp_cmd_in_band(const char *id) "%s"
|
|
monitor_qmp_err_in_band(const char *desc) "%s"
|
|
monitor_qmp_cmd_out_of_band(const char *id) "%s"
|
|
monitor_qmp_respond(void *mon, const char *json) "mon %p resp: %s"
|
|
handle_qmp_command(void *mon, const char *req) "mon %p req: %s"
|