diff options
| author | Lluís Vilanova | 2014-01-14 16:52:55 +0100 |
|---|---|---|
| committer | Stefan Hajnoczi | 2014-01-27 15:49:39 +0100 |
| commit | b618c28831eda2531acc5c1feb9dbb3047d19391 (patch) | |
| tree | 596739f9023c9134978223ed146660edc2f02e8b | |
| parent | tracing: start trace processing thread in final child process (diff) | |
| download | qemu-b618c28831eda2531acc5c1feb9dbb3047d19391.tar.gz qemu-b618c28831eda2531acc5c1feb9dbb3047d19391.tar.xz qemu-b618c28831eda2531acc5c1feb9dbb3047d19391.zip | |
trace: [simple] Do not include "trace/simple.h" in generated tracer headers
The header is not necessary, given that the simple backend does not define any
inlined tracing routines.
Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
| -rw-r--r-- | scripts/tracetool/backend/simple.py | 3 | ||||
| -rw-r--r-- | trace/simple.c | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/scripts/tracetool/backend/simple.py b/scripts/tracetool/backend/simple.py index 37ef599324..30faac93c8 100644 --- a/scripts/tracetool/backend/simple.py +++ b/scripts/tracetool/backend/simple.py @@ -93,9 +93,6 @@ def c(events): def h(events): - out('#include "trace/simple.h"', - '') - for event in events: out('void trace_%(name)s(%(args)s);', name = event.name, diff --git a/trace/simple.c b/trace/simple.c index 1e3f6914c5..410172ea6a 100644 --- a/trace/simple.c +++ b/trace/simple.c @@ -19,6 +19,7 @@ #include "qemu/timer.h" #include "trace.h" #include "trace/control.h" +#include "trace/simple.h" /** Trace file header event ID */ #define HEADER_EVENT_ID (~(uint64_t)0) /* avoids conflicting with TraceEventIDs */ |
