X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace%2Fiterator.h;h=3f7984fbe66ea00c01e6e5c95090acbf07f634fc;hb=c22b9327cbc4e6d9053f998952ea71c3227b8e36;hp=aa6470e74315a3f31118aa1c8f320e14c558445b;hpb=836c4dd8489aabc241590fb37859ee64443aba01;p=babeltrace.git diff --git a/include/babeltrace/iterator.h b/include/babeltrace/iterator.h index aa6470e7..3f7984fb 100644 --- a/include/babeltrace/iterator.h +++ b/include/babeltrace/iterator.h @@ -20,6 +20,10 @@ #include #include +#ifdef __cplusplus +extern "C" { +#endif + /* Forward declarations */ struct bt_iter; struct bt_saved_pos; @@ -40,6 +44,13 @@ struct bt_saved_pos; * is expressed in nanoseconds * - restore is a position saved with bt_iter_get_pos, it is used with * BT_SEEK_RESTORE. + * + * Note about BT_SEEK_LAST: if many events happen to be at the last + * timestamp, it is implementation-defined which event will be the last, + * and the order of events with the same timestamp may not be the same + * as normal iteration on the trace. Therefore, it is recommended to + * only use BT_SEEK_LAST to get the timestamp of the last event(s) in + * the trace. */ struct bt_iter_pos { enum { @@ -47,7 +58,7 @@ struct bt_iter_pos { BT_SEEK_RESTORE, /* uses u.restore */ BT_SEEK_CUR, BT_SEEK_BEGIN, - BT_SEEK_END, + BT_SEEK_LAST, } type; union { uint64_t seek_time; @@ -99,4 +110,8 @@ int bt_iter_set_pos(struct bt_iter *iter, const struct bt_iter_pos *pos); struct bt_iter_pos *bt_iter_create_time_pos(struct bt_iter *iter, uint64_t timestamp); +#ifdef __cplusplus +} +#endif + #endif /* _BABELTRACE_ITERATOR_H */