From: Lluís Vilanova Date: Tue, 14 Jan 2014 15:52:55 +0000 (+0100) Subject: trace: [simple] Do not include "trace/simple.h" in generated tracer headers X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b618c28831eda2531acc5c1feb9dbb3047d19391;p=qemu.git 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 Signed-off-by: Stefan Hajnoczi --- 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 */