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

Method HandleSignal

cpp/src/arrow/flight/server.cc:109–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

107 std::atomic<int> got_signal_;
108
109 static void HandleSignal(int signum) {
110 auto instance = running_instance_.load();
111 if (instance != nullptr) {
112 instance->DoHandleSignal(signum);
113 }
114 }
115
116 void DoHandleSignal(int signum) {
117 got_signal_ = signum;

Callers

nothing calls this directly

Calls 2

loadMethod · 0.45
DoHandleSignalMethod · 0.45

Tested by

no test coverage detected