mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 16:08:51 +00:00
poll: fix spelling of writable
This commit is contained in:
parent
69d56a2927
commit
fb0b63d8fd
1 changed files with 3 additions and 3 deletions
|
@ -29,17 +29,17 @@
|
||||||
* A #GstPoll keeps track of file descriptors much like fd_set (used with
|
* A #GstPoll keeps track of file descriptors much like fd_set (used with
|
||||||
* select()) or a struct pollfd array (used with poll()). Once created with
|
* select()) or a struct pollfd array (used with poll()). Once created with
|
||||||
* gst_poll_new(), the set can be used to wait for file descriptors to be
|
* gst_poll_new(), the set can be used to wait for file descriptors to be
|
||||||
* readable and/or writeable. It is possible to make this wait be controlled
|
* readable and/or writable. It is possible to make this wait be controlled
|
||||||
* by specifying %TRUE for the @controllable flag when creating the set (or
|
* by specifying %TRUE for the @controllable flag when creating the set (or
|
||||||
* later calling gst_poll_set_controllable()).
|
* later calling gst_poll_set_controllable()).
|
||||||
*
|
*
|
||||||
* New file descriptors are added to the set using gst_poll_add_fd(), and
|
* New file descriptors are added to the set using gst_poll_add_fd(), and
|
||||||
* removed using gst_poll_remove_fd(). Controlling which file descriptors
|
* removed using gst_poll_remove_fd(). Controlling which file descriptors
|
||||||
* should be waited for to become readable and/or writeable are done using
|
* should be waited for to become readable and/or writable are done using
|
||||||
* gst_poll_fd_ctl_read() and gst_poll_fd_ctl_write().
|
* gst_poll_fd_ctl_read() and gst_poll_fd_ctl_write().
|
||||||
*
|
*
|
||||||
* Use gst_poll_wait() to wait for the file descriptors to actually become
|
* Use gst_poll_wait() to wait for the file descriptors to actually become
|
||||||
* readable and/or writeable, or to timeout if no file descriptor is available
|
* readable and/or writable, or to timeout if no file descriptor is available
|
||||||
* in time. The wait can be controlled by calling gst_poll_restart() and
|
* in time. The wait can be controlled by calling gst_poll_restart() and
|
||||||
* gst_poll_set_flushing().
|
* gst_poll_set_flushing().
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue