summaryrefslogtreecommitdiffstats
path: root/libmpv/client.h
diff options
context:
space:
mode:
Diffstat (limited to 'libmpv/client.h')
-rw-r--r--libmpv/client.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libmpv/client.h b/libmpv/client.h
index d0d0402da7..0f2a455ae3 100644
--- a/libmpv/client.h
+++ b/libmpv/client.h
@@ -1228,11 +1228,13 @@ void mpv_set_wakeup_callback(mpv_handle *ctx, void (*cb)(void *d), void *d);
* struct pollfd pfds[1] = {
* { .fd = pipefd, .events = POLLIN },
* };
- * // Wait until there are possibly a new mpv events.
+ * // Wait until there are possibly new mpv events.
* poll(pfds, 1, -1);
* if (pfds[0].revents & POLLIN) {
* // Empty the pipe. Doing this before calling mpv_wait_event()
- * // ensures that no wakeups get missed.
+ * // ensures that no wakeups are missed. It's not so important to
+ * // make sure the pipe is really empty (it will just cause some
+ * // additional wakeups in unlikely corner cases).
* char unused[256];
* read(pipefd, unused, sizeof(unused));
* while (1) {