X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=include%2Fbabeltrace%2Ftrace-handle.h;h=f0e23125d1a86511bfc3e9b3efba015702c31ead;hp=4c85b670ce05ac05906fef846704dabf71ae2b0e;hb=03798a93f959f6c694fe98f5647481947607c604;hpb=1f7b01c261b8bd6c2640c0776f0a69865dff0ad8 diff --git a/include/babeltrace/trace-handle.h b/include/babeltrace/trace-handle.h index 4c85b670..f0e23125 100644 --- a/include/babeltrace/trace-handle.h +++ b/include/babeltrace/trace-handle.h @@ -23,6 +23,7 @@ */ #include +#include /* * trace_handle : unique identifier of a trace @@ -40,16 +41,20 @@ struct bt_ctf_event; const char *bt_trace_handle_get_path(struct bt_context *ctx, int handle_id); /* - * bt_trace_handle_get_timestamp_begin : returns the creation time of the buffers - * of a trace or -1ULL on error. + * bt_trace_handle_get_timestamp_begin : returns the creation time (in + * nanoseconds or cycles depending on type) of the buffers of a trace + * or -1ULL on error. */ -uint64_t bt_trace_handle_get_timestamp_begin(struct bt_context *ctx, int handle_id); +uint64_t bt_trace_handle_get_timestamp_begin(struct bt_context *ctx, + int handle_id, enum bt_clock_type type); /* - * bt_trace_handle_get_timestamp_end : returns the destruction timestamp of the - * buffers of a trace or -1ULL on error. + * bt_trace_handle_get_timestamp_end : returns the destruction timestamp + * (in anoseconds or cycles depending on type) of the buffers of a trace + * or -1ULL on error. */ -uint64_t bt_trace_handle_get_timestamp_end(struct bt_context *ctx, int handle_id); +uint64_t bt_trace_handle_get_timestamp_end(struct bt_context *ctx, + int handle_id, enum bt_clock_type type); /* * bt_ctf_event_get_handle_id : get the handle id associated with an event