Add in-process crash handler with symbolizable backtrace (#1536)

This commit is contained in:
Loïs
2026-05-25 06:11:45 +02:00
committed by GitHub
parent 326ef70afa
commit 2a3bc722d9
7 changed files with 786 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#pragma once
namespace dusk::crash_handler {
void install();
} // namespace dusk::crash_handler
+1
View File
@@ -12,6 +12,7 @@ namespace dusk {
void InitializeFileLogging(const std::filesystem::path& configDir, AuroraLogLevel logLevel);
void ShutdownFileLogging();
const char* GetLogFilePath();
int GetLogFileDescriptor();
void SendToStubLog(AuroraLogLevel level, const char* module, const char* message);
}