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

Method instance

cpp/src/arrow/util/cancel.cc:212–219  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

210 }
211
212 static SignalStopState* instance() {
213 static std::shared_ptr<SignalStopState> instance = []() {
214 auto ptr = std::make_shared<SignalStopState>();
215 ptr->Init();
216 return ptr;
217 }();
218 return instance.get();
219 }
220
221 private:
222 void SpawnSignalReceivingThread() {

Callers

nothing calls this directly

Calls 2

InitMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected