1 // =================================
 2 // Copyright (c) 2021 Seppo Laakko
 3 // Distributed under the MIT license
 4 // =================================
 5 
 6 #ifndef CMAJOR_RT_UNWIND_INCLUDED
 7 #define CMAJOR_RT_UNWIND_INCLUDED
 8 #include <cmajor/rt/RtApi.hpp>
 9 
10 extern "C" void* RtPushUnwindInfo(void* unwindInfo);
11 extern "C" void RtPopUnwindInfo(void* prevUnwindInfo);
12 extern "C" void RtAddCompileUnitFunction(void* functionAddress, const char* functionName, const char* sourceFilePath);
13 extern "C" const char* RtGetCallStack();
14 extern "C" void RtDisposeCallStack();
15 void InitUnwind();
16 void DoneUnwind();
17 
18 #endif // CMAJOR_RT_UNWIND_INCLUDED