X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=lib%2Ftrace-handle.c;h=050268f67fd97af9ba4eadbaab6055dbc3a09875;hb=5d95b2db86d36730ce4b7b5dffcfae32e0c21649;hp=73c137b3464011ffaf8e491f567f27bebb80103f;hpb=6cba487f031260536d6a77acde888c8b1a876fcf;p=babeltrace.git diff --git a/lib/trace-handle.c b/lib/trace-handle.c index 73c137b3..050268f6 100644 --- a/lib/trace-handle.c +++ b/lib/trace-handle.c @@ -23,6 +23,7 @@ #include #include #include +#include #include #include @@ -45,17 +46,35 @@ int bt_trace_handle_get_id(struct bt_trace_handle *th) return th->id; } -const char *bt_trace_handle_get_path(struct bt_trace_handle *th) +const char *bt_trace_handle_get_path(struct bt_context *ctx, int handle_id) { - return th->path; + struct bt_trace_handle *handle; + + handle = g_hash_table_lookup(ctx->trace_handles, + (gpointer) (unsigned long) handle_id); + if (!handle) + return NULL; + return handle->path; } -uint64_t bt_trace_handle_get_timestamp_begin(struct bt_trace_handle *th) +uint64_t bt_trace_handle_get_timestamp_begin(struct bt_context *ctx, int handle_id) { - return th->timestamp_begin; + struct bt_trace_handle *handle; + + handle = g_hash_table_lookup(ctx->trace_handles, + (gpointer) (unsigned long) handle_id); + if (!handle) + return -1ULL; + return handle->timestamp_begin; } -uint64_t bt_trace_handle_get_timestamp_end(struct bt_trace_handle *th) +uint64_t bt_trace_handle_get_timestamp_end(struct bt_context *ctx, int handle_id) { - return th->timestamp_end; + struct bt_trace_handle *handle; + + handle = g_hash_table_lookup(ctx->trace_handles, + (gpointer) (unsigned long) handle_id); + if (!handle) + return -1ULL; + return handle->timestamp_end; }