X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=include%2Fbabeltrace%2Fiterator.h;h=94df03c868526b1bcdf3fdbe935d8dfbf09406c9;hp=530d8460c2e0ca11db57f2534c5b4266ab008ce8;hb=9347cbab752c9672e64f8a71a465cca15f7b45ce;hpb=5a23202c5cfa654dcf76b7a59475da4eca8f1df9 diff --git a/include/babeltrace/iterator.h b/include/babeltrace/iterator.h index 530d8460..94df03c8 100644 --- a/include/babeltrace/iterator.h +++ b/include/babeltrace/iterator.h @@ -38,27 +38,6 @@ struct bt_iter_pos { } u; }; -/* - * bt_iter_create - Allocate a trace collection iterator. - * - * begin_pos and end_pos are optional parameters to specify the position - * at which the trace collection should be seeked upon iterator - * creation, and the position at which iteration will start returning - * "EOF". - * - * By default, if begin_pos is NULL, a BT_SEEK_CUR is performed at - * creation. By default, if end_pos is NULL, a BT_SEEK_END (end of - * trace) is the EOF criterion. - */ -struct bt_iter *bt_iter_create(struct bt_context *ctx, - struct bt_iter_pos *begin_pos, - struct bt_iter_pos *end_pos); - -/* - * bt_iter_destroy - Free a trace collection iterator. - */ -void bt_iter_destroy(struct bt_iter *iter); - /* * bt_iter_next: Move trace collection position to the next event. *