]> git.proxmox.com Git - mirror_qemu.git/blame - trace-events
trace: Add user documentation
[mirror_qemu.git] / trace-events
CommitLineData
94a420b1
SH
1# Trace events for debugging and performance instrumentation
2#
3# This file is processed by the tracetool script during the build.
4#
5# To add a new trace event:
6#
7# 1. Choose a name for the trace event. Declare its arguments and format
8# string.
9#
10# 2. Call the trace event from code using trace_##name, e.g. multiwrite_cb() ->
11# trace_multiwrite_cb(). The source file must #include "trace.h".
12#
13# Format of a trace event:
14#
1e2cf2bc 15# [disable] <name>(<type1> <arg1>[, <type2> <arg2>] ...) "<format-string>"
94a420b1
SH
16#
17# Example: qemu_malloc(size_t size) "size %zu"
18#
1e2cf2bc
SH
19# The "disable" keyword will build without the trace event.
20# In case of 'simple' trace backend, it will allow the trace event to be
21# compiled, but this would be turned off by default. It can be toggled on via
22# the monitor.
23#
94a420b1
SH
24# The <name> must be a valid as a C function name.
25#
26# Types should be standard C types. Use void * for pointers because the trace
27# system may not have the necessary headers included.
28#
29# The <format-string> should be a sprintf()-compatible format string.