Include TracyCrashHandler in a list of frames to cut on crash on Linux.

This commit is contained in:
Bartosz Taudul
2026-01-29 22:44:23 +01:00
parent eb18dafb22
commit b7c54253ff

View File

@@ -1108,7 +1108,11 @@ TRACY_API void TracyCrashHandler( int signal, siginfo_t* info, void* /*ucontext*
}
{
const char* remove[] = { "__kernel_rt_sigreturn", nullptr };
const char* remove[] = {
"__kernel_rt_sigreturn",
"TracyCrashHandler",
nullptr
};
GetProfiler().SendCallstack( 60, remove );
TracyQueuePrepare( QueueType::CrashReport );