src.ctf.fs: remove ctf_fs_ds_file::end_reached field
[babeltrace.git] / src / plugins / ctf / fs-src / data-stream-file.h
index 66a6c436908c37059f1a5d76e2225fd8a4a0f01a..e42890b43a224cdb57701a1cfd02cd014cddf67a 100644 (file)
@@ -77,15 +77,13 @@ struct ctf_fs_ds_file {
        size_t mmap_len;
 
        /* Offset in the file where the current mapping starts. */
-       off_t mmap_offset;
+       off_t mmap_offset_in_file;
 
        /*
         * Offset, in the current mapping, of the address to return on the next
         * request.
         */
-       off_t request_offset;
-
-       bool end_reached;
+       off_t request_offset_in_mapping;
 };
 
 BT_HIDDEN
@@ -98,11 +96,6 @@ struct ctf_fs_ds_file *ctf_fs_ds_file_create(
 BT_HIDDEN
 void ctf_fs_ds_file_destroy(struct ctf_fs_ds_file *stream);
 
-BT_HIDDEN
-bt_component_class_message_iterator_next_method_status ctf_fs_ds_file_next(
-               struct ctf_msg_iter *msg_iter,
-               const bt_message **msg);
-
 BT_HIDDEN
 struct ctf_fs_ds_index *ctf_fs_ds_file_build_index(
                struct ctf_fs_ds_file *ds_file,
This page took 0.023756 seconds and 4 git commands to generate.