X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Flttv%2Flttv%2Ftracecontext.c;h=71c9598730053c7aed0337d714cb806c000cddd2;hb=60c5092c6e979b8cc1c9b762de473857d0ac7c97;hp=47a327621b98f5c496cca9d9269bd6542882d7c4;hpb=6a62e071af9c2fcd95db1297b3bedb22f741d996;p=lttv.git diff --git a/ltt/branches/poly/lttv/lttv/tracecontext.c b/ltt/branches/poly/lttv/lttv/tracecontext.c index 47a32762..71c95987 100644 --- a/ltt/branches/poly/lttv/lttv/tracecontext.c +++ b/ltt/branches/poly/lttv/lttv/tracecontext.c @@ -968,18 +968,37 @@ struct marker_info *lttv_trace_hook_get_marker(LttTrace *t, LttvTraceHook *th) return marker_get_info_from_id(t, th->id); } +static inline GQuark lttv_merge_facility_event_name(GQuark fac, GQuark ev) +{ + char *tmp; + const char *sfac, *sev; + GQuark ret; + + sfac = g_quark_to_string(fac); + sev = g_quark_to_string(ev); + tmp = g_new(char, strlen(sfac) + strlen(sev) + 3); /* 3: _ \0 \0 */ + strcpy(tmp, sfac); + strcat(tmp, "_"); + strcat(tmp, sev); + ret = g_quark_from_string(tmp); + g_free(tmp); + return ret; +} -int lttv_trace_find_hook(LttTrace *t, GQuark marker_name, +int lttv_trace_find_hook(LttTrace *t, GQuark facility_name, GQuark event_name, GQuark fields[], LttvHook h, gpointer hook_data, GArray **trace_hooks) { struct marker_info *info; - struct marker_field *field; guint16 marker_id; int init_array_size; + GQuark marker_name; + + marker_name = lttv_merge_facility_event_name(facility_name, event_name); info = marker_get_info_from_name(t, marker_name); if(unlikely(info == NULL)) { - return NULL; + g_warning("No marker of name %s found", g_quark_to_string(marker_name)); + return 1; } init_array_size = (*trace_hooks)->len; @@ -989,6 +1008,7 @@ int lttv_trace_find_hook(LttTrace *t, GQuark marker_name, LttvTraceHook tmpth; int found; GQuark *f; + struct marker_field *marker_field; marker_id = marker_get_id_from_info(t, info); @@ -1001,7 +1021,7 @@ int lttv_trace_find_hook(LttTrace *t, GQuark marker_name, for(f = fields; f && *f != 0; f++) { found = 0; for_each_marker_field(marker_field, info) { - if(marker_fieldfield->name == *f) { + if(marker_field->name == *f) { found = 1; g_ptr_array_add(tmpth.fields, marker_field); break; @@ -1035,10 +1055,10 @@ skip_marker: void lttv_trace_hook_remove_all(GArray **th) { int i; - for(i=0; ilen; i++) { - g_ptr_array_free(g_array_index(th, LttvTraceHook, i).fields, TRUE); + for(i=0; i<(*th)->len; i++) { + g_ptr_array_free(g_array_index(*th, LttvTraceHook, i).fields, TRUE); } - *th = g_array_remove_range(*th, 0, th->len); + *th = g_array_remove_range(*th, 0, (*th)->len); } LttvTracesetContextPosition *lttv_traceset_context_position_new( @@ -1561,6 +1581,7 @@ static gint seek_forward_event_hook(void *hook_data, void* call_data) sd->event_count++; if(sd->event_count >= sd->n) return TRUE; + return FALSE; } /* Seek back n events forward from the current position (1 to n)