| 182 | |
| 183 | #ifdef _WIN32 |
| 184 | void TriggerSignal() { |
| 185 | std::thread([]() { ASSERT_OK(internal::SendSignal(SIGINT)); }).detach(); |
| 186 | } |
| 187 | #else |
| 188 | // On Unix, use setitimer() to exercise signal-async-safety |
| 189 | void TriggerSignal() { SetITimer(0.0001); } |
nothing calls this directly
no test coverage detected