From 6e807a817028aa41b234b2c70b80aea901e78505 Mon Sep 17 00:00:00 2001 From: Yann Ylavic Date: Wed, 10 Nov 2021 14:20:57 +0000 Subject: Follow up to r1894914: non-blocking wakeup pipe reads on Windows too. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1894917 13f79535-47bb-0310-9956-ffa450edef68 --- poll/unix/wakeup.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'poll') diff --git a/poll/unix/wakeup.c b/poll/unix/wakeup.c index 7c4d4247a..01b84f9a9 100644 --- a/poll/unix/wakeup.c +++ b/poll/unix/wakeup.c @@ -36,6 +36,9 @@ apr_status_t apr_poll_create_wakeup_pipe(apr_pool_t *pool, apr_pollfd_t *pfd, pool)) != APR_SUCCESS) return rv; + /* Read end of the pipe is non-blocking */ + apr_file_pipe_timeout_set(wakeup_pipe[0], 0); + pfd->reqevents = APR_POLLIN; pfd->desc_type = APR_POLL_FILE; pfd->desc.f = wakeup_pipe[0]; @@ -80,6 +83,7 @@ apr_status_t apr_poll_create_wakeup_pipe(apr_pool_t *pool, apr_pollfd_t *pfd, { apr_status_t rv; + /* Read end of the pipe is non-blocking */ if ((rv = apr_file_pipe_create_ex(&wakeup_pipe[0], &wakeup_pipe[1], APR_WRITE_BLOCK, pool)) != APR_SUCCESS) -- cgit v1.2.1