1 #include "../perf.h"
2 #include "util.h"
3 #include "trace-event.h"
4 
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 }
19