Get rid of clock-raw and use real clock
[babeltrace.git] / include / babeltrace / trace-handle.h
index 4c85b670ce05ac05906fef846704dabf71ae2b0e..f0e23125d1a86511bfc3e9b3efba015702c31ead 100644 (file)
@@ -23,6 +23,7 @@
  */
 
 #include <stdint.h>
+#include <babeltrace/clock-types.h>
 
 /*
  * 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
This page took 0.022784 seconds and 4 git commands to generate.