Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01d56ee commit 4f49b3fCopy full SHA for 4f49b3f
src/backend/storage/ipc/latch.c
@@ -86,14 +86,12 @@
86
87
/*
88
* By default, we use a self-pipe with poll() and a signalfd with epoll(), if
89
- * available. We avoid signalfd on illumos for now based on problem reports.
90
- * For testing the choice can also be manually specified.
+ * available. For testing the choice can also be manually specified.
91
*/
92
#if defined(WAIT_USE_POLL) || defined(WAIT_USE_EPOLL)
93
#if defined(WAIT_USE_SELF_PIPE) || defined(WAIT_USE_SIGNALFD)
94
/* don't overwrite manual choice */
95
-#elif defined(WAIT_USE_EPOLL) && defined(HAVE_SYS_SIGNALFD_H) && \
96
- !defined(__illumos__)
+#elif defined(WAIT_USE_EPOLL) && defined(HAVE_SYS_SIGNALFD_H)
97
#define WAIT_USE_SIGNALFD
98
#else
99
#define WAIT_USE_SELF_PIPE
0 commit comments