| 284 | } |
| 285 | |
| 286 | Status 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 | |
| 293 | void MinidumpExceptionHandler::StopUserSignalHandlerThread() { |
| 294 | user_signal_handler_thread_running_.store(false, std::memory_order_relaxed); |
nothing calls this directly
no test coverage detected