diff options
Diffstat (limited to 'tools/perf/util/trace-event.h')
-rw-r--r-- | tools/perf/util/trace-event.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/tools/perf/util/trace-event.h b/tools/perf/util/trace-event.h index da77e073c867..29821acc8db6 100644 --- a/tools/perf/util/trace-event.h +++ b/tools/perf/util/trace-event.h | |||
@@ -139,12 +139,14 @@ struct event { | |||
139 | }; | 139 | }; |
140 | 140 | ||
141 | enum { | 141 | enum { |
142 | EVENT_FL_ISFTRACE = 1, | 142 | EVENT_FL_ISFTRACE = 0x01, |
143 | EVENT_FL_ISPRINT = 2, | 143 | EVENT_FL_ISPRINT = 0x02, |
144 | EVENT_FL_ISBPRINT = 4, | 144 | EVENT_FL_ISBPRINT = 0x04, |
145 | EVENT_FL_ISFUNC = 8, | 145 | EVENT_FL_ISFUNC = 0x08, |
146 | EVENT_FL_ISFUNCENT = 16, | 146 | EVENT_FL_ISFUNCENT = 0x10, |
147 | EVENT_FL_ISFUNCRET = 32, | 147 | EVENT_FL_ISFUNCRET = 0x20, |
148 | |||
149 | EVENT_FL_FAILED = 0x80000000 | ||
148 | }; | 150 | }; |
149 | 151 | ||
150 | struct record { | 152 | struct record { |