| 71 | // -------------------------------------------------------------------------------------------------------------------------------------------- |
| 72 | |
| 73 | void NTAPI OnTimerCheckExit(PVOID pParam, BOOLEAN) |
| 74 | { |
| 75 | DEBUG_LOG(LL_CRI, "Timer check thread terminated! Check result: %d", gs_bTimerCheckCompleted); |
| 76 | |
| 77 | if (gs_bTimerCheckCompleted == false) |
| 78 | { |
| 79 | g_nmApp->OnCloseRequest(EXIT_ERR_SELF_INTEGRITY_TIMEOUT_2, g_winapiApiTable->GetLastError()); |
| 80 | return; |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | // -------------------------------------------------------------------------------------------------------------------------------------------- |
| 85 |
nothing calls this directly
no test coverage detected