X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Fltt%2Fparser.c;h=28ebaeea9dba2e5a99eac16c404be0f62d81d000;hb=54be3e479151d0279429f7fbecd111431650c58f;hp=ba331e9edb88ae9da88a97545bb05c94e8f81c59;hpb=4a6829e2f886c2b3aa8d9ec4e0142ef5edb390d6;p=lttv.git diff --git a/ltt/branches/poly/ltt/parser.c b/ltt/branches/poly/ltt/parser.c index ba331e9e..28ebaeea 100644 --- a/ltt/branches/poly/ltt/parser.c +++ b/ltt/branches/poly/ltt/parser.c @@ -248,6 +248,7 @@ void getEventAttributes(parse_file_t *in, event_t *ev) ev->per_trace = 0; ev->per_tracefile = 0; ev->param_buffer = 0; + ev->no_instrument_function = 0; while(1) { token = getToken(in); @@ -268,6 +269,8 @@ void getEventAttributes(parse_file_t *in, event_t *ev) ev->per_tracefile = 1; } else if(!strcmp("param_buffer", token)) { ev->param_buffer = 1; + } else if(!strcmp("no_instrument_function", token)) { + ev->no_instrument_function = 1; } }