AuroraRuntime/Source/Debug/Stack.Unix.hpp
J Reece Wilson 2371794d47 [+] Linux Exception Handlers and AuExit::ETriggerLevel::eSigQuitNow
[*] Linux stability fixes
[+] AuProcAddresses.UNIX.[cpp/hpp]
2024-03-05 13:55:21 +00:00

19 lines
348 B
C++

/***
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Stack.Unix.hpp
Date: 2022-1-26
Author: Reece
***/
#pragma once
#include <execinfo.h>
namespace Aurora::Debug
{
StackTrace DumpContext(ucontext_t &uc);
StackTrace DumpContext(void *pContext);
StackTrace PlatformWalkCallStack();
}