/** True system-specific crash handler that gets called first */ void PlatformCrashHandler(int32 Signal, siginfo_t* Info, void* Context) { fprintf(stderr, "Signal %d caught.\n", Signal); FLinuxCrashContext CrashContext; CrashContext.InitFromSignal(Signal, Info, Context); if (GCrashHandlerPointer) { GCrashHandlerPointer(CrashContext); } else { // call default one DefaultCrashHandler(CrashContext); } }
/** True system-specific crash handler that gets called first */ void PlatformCrashHandler(int32 Signal, siginfo_t* Info, void* Context) { fprintf(stderr, "Signal %d caught.\n", Signal); // Switch to malloc crash. FPlatformMallocCrash::Get().SetAsGMalloc(); FLinuxCrashContext CrashContext; CrashContext.InitFromSignal(Signal, Info, Context); if (GCrashHandlerPointer) { GCrashHandlerPointer(CrashContext); } else { // call default one DefaultCrashHandler(CrashContext); } }