Updating windows signal handling to not terminate the application before cleanup.

pull/1292/head
John Hall 2023-01-01 16:01:58 -08:00
rodzic c7bcb5213f
commit 54e4bc5251
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -88,7 +88,7 @@ static void abort_trace() { g_abort_trace = true; }
BOOL WINAPI CtrlHandler(DWORD fdwCtrlType) {
(void)fdwCtrlType;
abort_trace();
return FALSE;
return TRUE;
}
#endif