X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=include%2Fbabeltrace%2Fiterator.h;h=e658eeec0b5cdc8789e684ca630b4c04d9396d67;hp=aa6470e74315a3f31118aa1c8f320e14c558445b;hb=f7ed656326285831256061407c2c533c16c50f36;hpb=28fcbaca77cdf7b7c34e19cb46e15a136ff5e397 diff --git a/include/babeltrace/iterator.h b/include/babeltrace/iterator.h index aa6470e7..e658eeec 100644 --- a/include/babeltrace/iterator.h +++ b/include/babeltrace/iterator.h @@ -40,6 +40,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 { @@ -48,6 +55,7 @@ struct bt_iter_pos { BT_SEEK_CUR, BT_SEEK_BEGIN, BT_SEEK_END, + BT_SEEK_LAST, } type; union { uint64_t seek_time;