Commit-ID:  ff1a70e75fd005821ab5f2211312a8aa13bbf959
Gitweb:     http://git.kernel.org/tip/ff1a70e75fd005821ab5f2211312a8aa13bbf959
Author:     Steven Rostedt <[email protected]>
AuthorDate: Thu, 23 Aug 2012 11:22:01 -0400
Committer:  Arnaldo Carvalho de Melo <[email protected]>
CommitDate: Wed, 5 Sep 2012 17:17:30 -0300

tools lib traceevent: Modify header to work in C++ programs

Replace keyword "private" to "priv" in event-parse.h to allow it to be
used in C++ programs.

Signed-off-by: Steven Rostedt <[email protected]>
Cc: Frederic Weisbecker <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Namhyung Kim <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
---
 tools/lib/traceevent/event-parse.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/lib/traceevent/event-parse.h 
b/tools/lib/traceevent/event-parse.h
index 527df03..863a0bb 100644
--- a/tools/lib/traceevent/event-parse.h
+++ b/tools/lib/traceevent/event-parse.h
@@ -49,7 +49,7 @@ struct pevent_record {
        int                     cpu;
        int                     ref_count;
        int                     locked;         /* Do not free, even if 
ref_count is zero */
-       void                    *private;
+       void                    *priv;
 #if DEBUG_RECORD
        struct pevent_record    *prev;
        struct pevent_record    *next;
@@ -106,7 +106,7 @@ struct plugin_option {
        char                            *plugin_alias;
        char                            *description;
        char                            *value;
-       void                            *private;
+       void                            *priv;
        int                             set;
 };
 
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to