MCPcopy Create free account
hub / github.com/apache/impala / StartUserSignalHandlerThread

Method StartUserSignalHandlerThread

be/src/kudu/util/minidump.cc:286–291  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

284}
285
286Status MinidumpExceptionHandler::StartUserSignalHandlerThread() {
287 user_signal_handler_thread_running_.store(true, std::memory_order_relaxed);
288 return Thread::Create("minidump", "sigusr1-handler",
289 [this]() { this->RunUserSignalHandlerThread(); },
290 &user_signal_handler_thread_);
291}
292
293void MinidumpExceptionHandler::StopUserSignalHandlerThread() {
294 user_signal_handler_thread_running_.store(false, std::memory_order_relaxed);

Callers

nothing calls this directly

Calls 4

CreateClass · 0.85
OKFunction · 0.85
storeMethod · 0.45

Tested by

no test coverage detected