feat: Added initial support for tracing function calls and printing exception stack traces

This commit is contained in:
WerWolv
2024-06-01 16:36:36 +02:00
parent cf34c4bd95
commit 3e0bb6d8be
16 changed files with 286 additions and 119 deletions

View File

@@ -0,0 +1,13 @@
#include <hex/trace/instrumentation.hpp>
namespace hex {
void functionEntry([[maybe_unused]] void *functionAddress) {
}
void functionExit([[maybe_unused]] void *functionAddress) {
}
}