cmogstored dev/user discussion/issues/patches/etc
 help / color / mirror / code / Atom feed
* [PATCH] selfwake: enable self-pipe with kqueue
@ 2018-11-29 19:35 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2018-11-29 19:35 UTC (permalink / raw)
  To: cmogstored-public; +Cc: Eric Wong

This was causing my libkqueue build to stall on Linux where
epoll_pwait exists.

We actually favor kqueue in the code for testing purposes,
so we need to enable the self-wake pipe when using libkqueue
if epoll_pwait is detected.
---
 selfwake.h | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/selfwake.h b/selfwake.h
index c147ccb..0dc0af7 100644
--- a/selfwake.h
+++ b/selfwake.h
@@ -2,7 +2,9 @@
  * Copyright (C) 2012-2016 all contributors <cmogstored-public@bogomips.org>
  * License: GPLv3 or later (see COPYING for details)
  */
-#if (defined(HAVE_EPOLL_WAIT) && defined(HAVE_PPOLL)) \
+#if defined(HAVE_KQUEUE)
+# define MOG_SELFPIPE 1
+#elif (defined(HAVE_EPOLL_WAIT) && defined(HAVE_PPOLL)) \
     || defined(HAVE_EPOLL_PWAIT)
 # define MOG_SELFPIPE 0
 #else
-- 
EW


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2018-11-29 19:35 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-29 19:35 [PATCH] selfwake: enable self-pipe with kqueue Eric Wong

Code repositories for project(s) associated with this public inbox

	https://yhbt.net/cmogstored.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).