[PATCH 03/15] perf tools: Fix include header files in util/parse-events.h

From: Arnaldo Carvalho de Melo
Date: Wed May 02 2012 - 15:29:03 EST


From: Robert Richter <robert.richter@xxxxxxx>

Include header fixes for

... bool:

util/parse-events.h:31: error: expected â=â, â,â, â;â, âasmâ or â__attribute__â before âhave_tracepointsâ

... and types.h:

util/parse-events.h:28: error: expected â)â before âconfigâ
util/parse-events.h:34: error: expected declaration specifiers or â...â before âu64â
util/parse-events.h:45: error: expected â)â before âtypeâ

This happens if now other include files are included before
util/parse-events.h.

Signed-off-by: Robert Richter <robert.richter@xxxxxxx>
Cc: Ingo Molnar <mingo@xxxxxxxxxx>
Link: http://lkml.kernel.org/r/1333643188-26895-2-git-send-email-robert.richter@xxxxxxx
Signed-off-by: Arnaldo Carvalho de Melo <acme@xxxxxxxxxx>
---
tools/perf/util/parse-events.h | 2 ++
1 file changed, 2 insertions(+)

diff --git a/tools/perf/util/parse-events.h b/tools/perf/util/parse-events.h
index ca069f8..5cb0028 100644
--- a/tools/perf/util/parse-events.h
+++ b/tools/perf/util/parse-events.h
@@ -4,7 +4,9 @@
* Parse symbolic events/counts passed in as options:
*/

+#include <stdbool.h>
#include "../../../include/linux/perf_event.h"
+#include "types.h"

struct list_head;
struct perf_evsel;
--
1.7.9.2.358.g22243

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/