diff options
author | Vijay Pai <vpai@google.com> | 2018-09-26 06:31:40 -0700 |
---|---|---|
committer | Vijay Pai <vpai@google.com> | 2018-10-10 08:38:15 -0700 |
commit | a46ddf4a099fb8daad518b4846b05696a9030fed (patch) | |
tree | 7821c0a1b84d3c8d358c25f8686a4848a2ce6ac6 /include | |
parent | 478fedb273df1d4508a7b1199ba09fecfb552e9a (diff) |
Remove grpc_use_signal which is no longer relevant
Diffstat (limited to 'include')
-rw-r--r-- | include/grpc/grpc_posix.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/grpc/grpc_posix.h b/include/grpc/grpc_posix.h index 5f1ada5aaf..fbce5e13c1 100644 --- a/include/grpc/grpc_posix.h +++ b/include/grpc/grpc_posix.h @@ -52,14 +52,6 @@ GRPCAPI grpc_channel* grpc_insecure_channel_create_from_fd( GRPCAPI void grpc_server_add_insecure_channel_from_fd(grpc_server* server, void* reserved, int fd); -/** GRPC Core POSIX library may internally use signals to optimize some work. - The library uses (SIGRTMIN + 6) signal by default. Use this API to instruct - the library to use a different signal i.e 'signum' instead. - Note: - - To prevent GRPC library from using any signals, pass a 'signum' of -1 - - This API is optional but if called, it MUST be called before grpc_init() */ -GRPCAPI void grpc_use_signal(int signum); - #ifdef __cplusplus } #endif |