initial commit

This commit is contained in:
2026-02-12 00:45:31 -08:00
commit 5f168f370b
3024 changed files with 804889 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
#ifndef CRASH_HANDLER_H
#define CRASH_HANDLER_H
// allow-include-after-namespace
// Determine which crash handler implementation to use
#ifdef _WIN32
#include "crash_handler_win.h"
namespace impl = crash_handler_win;
#elif defined(USE_LIBUNWIND)
#include "crash_handler_libunwind.h"
namespace impl = crash_handler_libunwind;
#elif __has_include(<execinfo.h>)
#define USE_EXECINFO 1
#include "crash_handler_execinfo.h"
namespace impl = crash_handler_execinfo;
#else
#include "crash_handler_noop.h"
namespace impl = crash_handler_noop;
#endif
// Unified interface - these functions will dispatch to the appropriate implementation
inline void crash_handler(int sig) {
impl::crash_handler(sig);
}
inline void print_stacktrace() {
impl::print_stacktrace();
}
inline void setup_crash_handler() {
impl::setup_crash_handler();
}
#endif // CRASH_HANDLER_H