2 * Interface for configuring and controlling the state of tracing events.
4 * Copyright (C) 2011-2014 LluĂs Vilanova <vilanova@ac.upc.edu>
6 * This work is licensed under the terms of the GNU GPL, version 2 or later.
7 * See the COPYING file in the top-level directory.
10 #ifndef TRACE__CONTROL_INTERNAL_H
11 #define TRACE__CONTROL_INTERNAL_H
15 extern TraceEvent trace_events
[];
16 extern bool trace_events_dstate
[];
17 extern int trace_events_enabled_count
;
20 static inline TraceEventID
trace_event_count(void)
22 return TRACE_EVENT_COUNT
;
25 static inline TraceEvent
*trace_event_id(TraceEventID id
)
27 assert(id
< trace_event_count());
28 return &trace_events
[id
];
31 static inline bool trace_event_is_pattern(const char *str
)
34 return strchr(str
, '*') != NULL
;
37 static inline TraceEventID
trace_event_get_id(TraceEvent
*ev
)
43 static inline const char * trace_event_get_name(TraceEvent
*ev
)
49 static inline bool trace_event_get_state_static(TraceEvent
*ev
)
55 static inline bool trace_event_get_state_dynamic_by_id(int id
)
57 return unlikely(trace_events_enabled_count
) && trace_events_dstate
[id
];
60 static inline bool trace_event_get_state_dynamic(TraceEvent
*ev
)
62 int id
= trace_event_get_id(ev
);
63 return trace_event_get_state_dynamic_by_id(id
);
66 static inline void trace_event_set_state_dynamic(TraceEvent
*ev
, bool state
)
68 int id
= trace_event_get_id(ev
);
70 assert(trace_event_get_state_static(ev
));
71 trace_events_enabled_count
+= state
- trace_events_dstate
[id
];
72 trace_events_dstate
[id
] = state
;
75 #endif /* TRACE__CONTROL_INTERNAL_H */