Frederic Weisbecker | 1ef2ed1 | 2009-08-28 03:09:58 +0200 | [diff] [blame] | 1 | #include "../perf.h" |
Steven Rostedt | ea4010d | 2009-08-17 16:18:07 +0200 | [diff] [blame] | 2 | #include "util.h" |
| 3 | #include "trace-event.h" |
| 4 | |
Tom Zanussi | 7397d80 | 2010-01-27 02:27:54 -0600 | [diff] [blame] | 5 | int common_pc(struct scripting_context *context) |
| 6 | { |
| 7 | return parse_common_pc(context->event_data); |
| 8 | } |
| 9 | |
| 10 | int common_flags(struct scripting_context *context) |
| 11 | { |
| 12 | return parse_common_flags(context->event_data); |
| 13 | } |
| 14 | |
| 15 | int common_lock_depth(struct scripting_context *context) |
| 16 | { |
| 17 | return parse_common_lock_depth(context->event_data); |
| 18 | } |