summaryrefslogtreecommitdiff
path: root/apps/buffering.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/buffering.h')
-rw-r--r--apps/buffering.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/buffering.h b/apps/buffering.h
index 2e4cfd3968..ee3e7c9053 100644
--- a/apps/buffering.h
+++ b/apps/buffering.h
@@ -95,7 +95,6 @@ ssize_t bufcuttail(int handle_id, size_t size);
95 * buf_is_handle: is the handle valid? 95 * buf_is_handle: is the handle valid?
96 * buf_pin_handle: Disallow/allow handle movement. Handle may still be removed. 96 * buf_pin_handle: Disallow/allow handle movement. Handle may still be removed.
97 * buf_handle_offset: Get the offset of the first buffered byte from the file 97 * buf_handle_offset: Get the offset of the first buffered byte from the file
98 * buf_request_buffer_handle: Request buffering of a handle
99 * buf_set_base_handle: Tell the buffering thread which handle is currently read 98 * buf_set_base_handle: Tell the buffering thread which handle is currently read
100 * buf_length: Total size of ringbuffer 99 * buf_length: Total size of ringbuffer
101 * buf_used: Total amount of buffer space used (including allocated space) 100 * buf_used: Total amount of buffer space used (including allocated space)
@@ -106,7 +105,6 @@ enum data_type buf_handle_data_type(int handle_id);
106ssize_t buf_handle_remaining(int handle_id); 105ssize_t buf_handle_remaining(int handle_id);
107bool buf_is_handle(int handle_id); 106bool buf_is_handle(int handle_id);
108ssize_t buf_handle_offset(int handle_id); 107ssize_t buf_handle_offset(int handle_id);
109void buf_request_buffer_handle(int handle_id);
110void buf_set_base_handle(int handle_id); 108void buf_set_base_handle(int handle_id);
111size_t buf_length(void); 109size_t buf_length(void);
112size_t buf_used(void); 110size_t buf_used(void);