imported from "final" folder

This commit is contained in:
2025-11-28 12:12:50 +01:00
parent f9288986cf
commit ff8e725b35
1061 changed files with 225150 additions and 96 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