X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=lib%2Ftrace-collection.c;h=fc06dcd961c36aa3af3d723dae8fd85d20dfbfda;hp=4f1379c5a43d73cb4e0bcae9053339bf533f7802;hb=2552c374b9c87056187ff9af572f9fba7ee7839d;hpb=dd06413f0a5c638a20f000f3046755ee229c821d diff --git a/lib/trace-collection.c b/lib/trace-collection.c index 4f1379c5..fc06dcd9 100644 --- a/lib/trace-collection.c +++ b/lib/trace-collection.c @@ -155,7 +155,7 @@ static void clock_add(gpointer key, gpointer value, gpointer user_data) * correlate this trace with at least one other clock in the trace and * convert the index from cycles to real time. */ -int trace_collection_add(struct trace_collection *tc, +int bt_trace_collection_add(struct trace_collection *tc, struct trace_descriptor *td) { struct ctf_trace *trace; @@ -208,7 +208,7 @@ error: return -EPERM; } -int trace_collection_remove(struct trace_collection *tc, +int bt_trace_collection_remove(struct trace_collection *tc, struct trace_descriptor *td) { if (!tc || !td) @@ -222,7 +222,7 @@ int trace_collection_remove(struct trace_collection *tc, } -void init_trace_collection(struct trace_collection *tc) +void bt_init_trace_collection(struct trace_collection *tc) { assert(tc); tc->array = g_ptr_array_new(); @@ -234,10 +234,10 @@ void init_trace_collection(struct trace_collection *tc) } /* - * finalize_trace_collection() closes the opened traces for read + * bt_finalize_trace_collection() closes the opened traces for read * and free the memory allocated for trace collection */ -void finalize_trace_collection(struct trace_collection *tc) +void bt_finalize_trace_collection(struct trace_collection *tc) { assert(tc); g_ptr_array_free(tc->array, TRUE);