X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2Fbabeltrace%2Fctf%2Ftypes.h;h=c5c824fdb8bab26f3d6808ec9562a6f70a807fa9;hb=6743f229982176bfc2bdd2b3ab5c75ca62f45b35;hp=60749a6c9f8ec8b368413b19c47f84288025a270;hpb=b086c01a10fc706dacf1a5a8ea2c4a8acfa0ee24;p=babeltrace.git diff --git a/include/babeltrace/ctf/types.h b/include/babeltrace/ctf/types.h index 60749a6c..c5c824fd 100644 --- a/include/babeltrace/ctf/types.h +++ b/include/babeltrace/ctf/types.h @@ -40,6 +40,7 @@ struct packet_index { size_t content_size; /* content size, in bits */ uint64_t timestamp_begin; uint64_t timestamp_end; + uint32_t events_discarded; }; /* @@ -192,10 +193,13 @@ void ctf_pos_get_event(struct ctf_stream_pos *pos) if (pos->offset == pos->content_size) { printf_debug("ctf_move_pos_slow (before call): %zd\n", pos->offset); - ctf_move_pos_slow(pos, 0, SEEK_CUR); + pos->move_pos_slow(pos, 0, SEEK_CUR); printf_debug("ctf_move_pos_slow (after call): %zd\n", pos->offset); } } +void ctf_print_timestamp(FILE *fp, struct ctf_stream *stream, + uint64_t timestamp); + #endif /* _BABELTRACE_CTF_TYPES_H */