]> git.proxmox.com Git - qemu.git/commit - simpletrace.c
simpletrace: Thread-safe tracing
authorStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Sat, 26 Feb 2011 18:38:39 +0000 (18:38 +0000)
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Mon, 7 Mar 2011 15:34:17 +0000 (15:34 +0000)
commit0b5538c300a56c3cfb33022840fe0b4968147e7a
tree9b60b859d24881e2d032828c3788b2171f3ceaa6
parent07bf23a77131668ef8db37e08d508b117655ce86
simpletrace: Thread-safe tracing

Trace events outside the global mutex cannot be used with the simple
trace backend since it is not thread-safe.  There is no check to prevent
them being enabled so people sometimes learn this the hard way.

This patch restructures the simple trace backend with a ring buffer
suitable for multiple concurrent writers.  A writeout thread empties the
trace buffer when threshold fill levels are reached.  Should the
writeout thread be unable to keep up with trace generation, records will
simply be dropped.

Each time events are dropped a special record is written to the trace
file indicating how many events were dropped.  The event ID is
0xfffffffffffffffe and its signature is dropped(uint32_t count).

Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
docs/tracing.txt
scripts/simpletrace.py
simpletrace.c
simpletrace.h
vl.c