aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Nicolas Noble <nicolasnoble@users.noreply.github.com>2016-09-29 11:16:29 -0700
committerGravatar GitHub <noreply@github.com>2016-09-29 11:16:29 -0700
commit66306c2ae80fb4298c8dbf8de619719bc2bfe925 (patch)
treeceb5f6ed357574e39d1de9b0f51b9c7b514a3c5b /src
parentd914591e95ac38c6f178969a46b02e507ed7641a (diff)
parenta6136157c2f1e4b37ce8c91cdc0b6fa55fc3c05f (diff)
Merge pull request #8224 from sreecha/grpc_signal
Use SIGMINRT + 6 as the default signal for gRPC epoll engine (instead of SIGMINRT + 2)
Diffstat (limited to 'src')
-rw-r--r--src/core/lib/iomgr/ev_epoll_linux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/ev_epoll_linux.c b/src/core/lib/iomgr/ev_epoll_linux.c
index 740920d760..ab77ebc78b 100644
--- a/src/core/lib/iomgr/ev_epoll_linux.c
+++ b/src/core/lib/iomgr/ev_epoll_linux.c
@@ -1897,7 +1897,7 @@ const grpc_event_engine_vtable *grpc_init_epoll_linux(void) {
}
if (!is_grpc_wakeup_signal_initialized) {
- grpc_use_signal(SIGRTMIN + 2);
+ grpc_use_signal(SIGRTMIN + 6);
}
fd_global_init();