mirror of
https://github.com/wolfpld/tracy.git
synced 2026-09-12 13:28:15 +00:00
Include TracyCrashHandler in a list of frames to cut on crash on Linux.
This commit is contained in:
@@ -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 );
|
||||
|
||||
Reference in New Issue
Block a user