The following changes since commit e280ff5e9159ed227a117339c1157143627cab96:
spice-qemu-char: Drop hackish vmc_register on spice_chr_write (2013-03-27 10:26:50 -0500) are available in the git repository at: git://github.com/stefanha/qemu.git tracing for you to fetch changes up to 7e8660032cd21c1bdc4160b8fab7deec62e1aa12: vl: add runstate_set tracepoint (2013-03-28 14:20:58 +0100) ---------------------------------------------------------------- Kazuya Saito (1): vl: add runstate_set tracepoint LluĂs Vilanova (7): trace: [tracetool] Explicitly identify public backends trace: Provide a generic tracing event descriptor trace: Provide a detailed event control interface trace: [monitor] Use new event control interface trace: [default] Port to generic event information and new control interface trace: [simple] Port to generic event information and new control interface trace: [stderr] Port to generic event information and new control interface Stefan Hajnoczi (3): trace: rebuild generated-events.o when configuration changes .gitignore: add trace/generated-events.[ch] .gitignore: rename trace/generated-tracers.dtrace .gitignore | 4 +- Makefile | 3 + docs/tracing.txt | 44 ++++---- monitor.c | 13 ++- scripts/tracetool.py | 4 +- scripts/tracetool/backend/__init__.py | 16 ++- scripts/tracetool/backend/dtrace.py | 3 + scripts/tracetool/backend/events.py | 23 ++++ scripts/tracetool/backend/simple.py | 22 ++-- scripts/tracetool/backend/stderr.py | 28 ++--- scripts/tracetool/backend/ust.py | 3 + scripts/tracetool/format/events_c.py | 39 +++++++ scripts/tracetool/format/events_h.py | 50 +++++++++ scripts/tracetool/format/h.py | 9 +- trace-events | 1 + trace/Makefile.objs | 24 ++++- trace/control-internal.h | 67 ++++++++++++ trace/control.c | 106 ++++++++++++++++--- trace/control.h | 190 ++++++++++++++++++++++++++++++---- trace/default.c | 5 +- trace/event-internal.h | 33 ++++++ trace/simple.c | 35 ++----- trace/simple.h | 6 +- trace/stderr.c | 34 ++---- trace/stderr.h | 11 -- vl.c | 2 +- 26 files changed, 595 insertions(+), 180 deletions(-) create mode 100644 scripts/tracetool/backend/events.py create mode 100644 scripts/tracetool/format/events_c.py create mode 100644 scripts/tracetool/format/events_h.py create mode 100644 trace/control-internal.h create mode 100644 trace/event-internal.h delete mode 100644 trace/stderr.h -- 1.8.1.4