diff options
author | Sree Kuchibhotla <sreek@google.com> | 2016-09-27 16:48:25 -0700 |
---|---|---|
committer | Sree Kuchibhotla <sreek@google.com> | 2016-09-27 16:48:25 -0700 |
commit | bd48c9162a158f4c55acd29ef449b6b12906616b (patch) | |
tree | 9d81cca0b296b25bef665289637919241ef2edbc /src/core | |
parent | 7ab8eecdc9c0c2b1ebb2e69d7460bebca774ebd9 (diff) |
Use SIGMINRT + 6 as the default signal for gRPC epoll engine
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/lib/iomgr/ev_epoll_linux.c | 2 |
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(); |