MCPcopy Create free account
hub / github.com/apache/arrow / ReinstateSignalHandler

Function ReinstateSignalHandler

cpp/src/arrow/util/io_util.cc:2080–2085  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2078}
2079
2080void ReinstateSignalHandler(int signum, SignalHandler::Callback handler) {
2081#if !ARROW_HAVE_SIGACTION
2082 // Cannot report any errors from signal() (but there shouldn't be any)
2083 signal(signum, handler);
2084#endif
2085}
2086
2087Status SendSignal(int signum) {
2088 if (raise(signum) == 0) {

Callers 3

noop_signal_handlerFunction · 0.85
HandleSignalMethod · 0.85
DoHandleSignalMethod · 0.85

Calls

no outgoing calls

Tested by 2

noop_signal_handlerFunction · 0.68
HandleSignalMethod · 0.68