19 lines
348 B
C++
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();
|
|
} |