Commit 8e3dd711 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Unexport block_FifoWake()

parent 210225b2
...@@ -298,8 +298,6 @@ static inline block_t *block_ChainGather( block_t *p_list ) ...@@ -298,8 +298,6 @@ static inline block_t *block_ChainGather( block_t *p_list )
* needed), be carefull, you can use it ONLY if you are sure to be the * needed), be carefull, you can use it ONLY if you are sure to be the
* only one getting data from the fifo. * only one getting data from the fifo.
* - block_FifoCount : how many packets are waiting in the fifo * - block_FifoCount : how many packets are waiting in the fifo
* - block_FifoWake : wake ups a thread with block_FifoGet() = NULL
* (this is used to wakeup a thread when there is no data to queue)
* *
* block_FifoGet and block_FifoShow are cancellation points. * block_FifoGet and block_FifoShow are cancellation points.
****************************************************************************/ ****************************************************************************/
...@@ -309,7 +307,7 @@ VLC_API void block_FifoRelease( block_fifo_t * ); ...@@ -309,7 +307,7 @@ VLC_API void block_FifoRelease( block_fifo_t * );
VLC_API void block_FifoPace( block_fifo_t *fifo, size_t max_depth, size_t max_size ); VLC_API void block_FifoPace( block_fifo_t *fifo, size_t max_depth, size_t max_size );
VLC_API void block_FifoEmpty( block_fifo_t * ); VLC_API void block_FifoEmpty( block_fifo_t * );
VLC_API size_t block_FifoPut( block_fifo_t *, block_t * ); VLC_API size_t block_FifoPut( block_fifo_t *, block_t * );
VLC_API void block_FifoWake( block_fifo_t * ); void block_FifoWake( block_fifo_t * );
VLC_API block_t * block_FifoGet( block_fifo_t * ) VLC_USED; VLC_API block_t * block_FifoGet( block_fifo_t * ) VLC_USED;
VLC_API block_t * block_FifoShow( block_fifo_t * ); VLC_API block_t * block_FifoShow( block_fifo_t * );
size_t block_FifoSize( const block_fifo_t *p_fifo ) VLC_USED; size_t block_FifoSize( const block_fifo_t *p_fifo ) VLC_USED;
......
...@@ -25,7 +25,6 @@ block_FifoPace ...@@ -25,7 +25,6 @@ block_FifoPace
block_FifoPut block_FifoPut
block_FifoRelease block_FifoRelease
block_FifoShow block_FifoShow
block_FifoWake
block_File block_File
block_heap_Alloc block_heap_Alloc
block_Init block_Init
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment