qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] trace: [simple] Do not include "trace/simple.h" in


From: Lluís Vilanova
Subject: [Qemu-devel] [PATCH] trace: [simple] Do not include "trace/simple.h" in generated tracer headers
Date: Thu, 9 Jan 2014 15:41:23 +0100
User-agent: StGit/0.16

The header is not necessary, given that the simple backend does not define any
inlined tracing routines.

Signed-off-by: Lluís Vilanova <address@hidden>
--
Cc: Stefan Hajnoczi <address@hidden>
---
 scripts/tracetool/backend/simple.py |    3 ---
 trace/simple.c                      |    2 ++
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/scripts/tracetool/backend/simple.py 
b/scripts/tracetool/backend/simple.py
index 37ef599..30faac9 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 1e3f691..8b59760 100644
--- a/trace/simple.c
+++ b/trace/simple.c
@@ -8,6 +8,8 @@
  *
  */
 
+#include "trace/simple.h"
+
 #include <stdlib.h>
 #include <stdint.h>
 #include <stdio.h>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]