X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Fltt%2Fparser.c;h=ba331e9edb88ae9da88a97545bb05c94e8f81c59;hb=4a6829e2f886c2b3aa8d9ec4e0142ef5edb390d6;hp=3183367e7ff16a97e479c7d52dcd1b6ce540d5e0;hpb=383d64dac9b5130311476c125d77224151e45a6f;p=lttv.git diff --git a/ltt/branches/poly/ltt/parser.c b/ltt/branches/poly/ltt/parser.c index 3183367e..ba331e9e 100644 --- a/ltt/branches/poly/ltt/parser.c +++ b/ltt/branches/poly/ltt/parser.c @@ -247,6 +247,7 @@ void getEventAttributes(parse_file_t *in, event_t *ev) ev->name = NULL; ev->per_trace = 0; ev->per_tracefile = 0; + ev->param_buffer = 0; while(1) { token = getToken(in); @@ -265,7 +266,9 @@ void getEventAttributes(parse_file_t *in, event_t *ev) ev->per_trace = 1; } else if(!strcmp("per_tracefile", token)) { ev->per_tracefile = 1; - } + } else if(!strcmp("param_buffer", token)) { + ev->param_buffer = 1; + } } }