X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;ds=sidebyside;f=include%2Fbabeltrace%2Fformat.h;h=c9b84a6f59abf1c4462778a955b37a8b41c5bb2e;hb=61cf588beae752e5ddfc60b6b5310f769ac9e852;hp=07e854fee08645acb85b1e4cf0083992e385598e;hpb=caf929fa6105f9dbea79e3c05f9a9cbc7944028a;p=babeltrace.git diff --git a/include/babeltrace/format.h b/include/babeltrace/format.h index 07e854fe..c9b84a6f 100644 --- a/include/babeltrace/format.h +++ b/include/babeltrace/format.h @@ -49,6 +49,7 @@ struct bt_trace_descriptor; struct bt_mmap_stream { int fd; struct bt_list_head list; + void *priv; }; struct bt_mmap_stream_list { @@ -72,10 +73,12 @@ struct bt_format { struct bt_context *ctx); void (*set_handle)(struct bt_trace_descriptor *descriptor, struct bt_trace_handle *handle); - uint64_t (*timestamp_begin)(struct bt_trace_descriptor *descriptor, - struct bt_trace_handle *handle, enum bt_clock_type type); - uint64_t (*timestamp_end)(struct bt_trace_descriptor *descriptor, - struct bt_trace_handle *handle, enum bt_clock_type type); + int (*timestamp_begin)(struct bt_trace_descriptor *descriptor, + struct bt_trace_handle *handle, enum bt_clock_type type, + int64_t *timestamp); + int (*timestamp_end)(struct bt_trace_descriptor *descriptor, + struct bt_trace_handle *handle, enum bt_clock_type type, + int64_t *timestamp); int (*convert_index_timestamp)(struct bt_trace_descriptor *descriptor); };