blob: 94775199644ece31d1253583416a21e4ba3fb480 [file] [log] [blame]
Frederic Weisbecker1ef2ed12009-08-28 03:09:58 +02001#include "../perf.h"
Steven Rostedtea4010d2009-08-17 16:18:07 +02002#include "util.h"
3#include "trace-event.h"
4
Tom Zanussi7397d802010-01-27 02:27:54 -06005int common_pc(struct scripting_context *context)
6{
7 return parse_common_pc(context->event_data);
8}
9
10int common_flags(struct scripting_context *context)
11{
12 return parse_common_flags(context->event_data);
13}
14
15int common_lock_depth(struct scripting_context *context)
16{
17 return parse_common_lock_depth(context->event_data);
18}