1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Cut off Linux stack trace at sigreturn.

This commit is contained in:
Bartosz Taudul 2018-08-21 01:53:00 +02:00
parent 22346feea3
commit 8a78fcd2f9

View File

@ -610,7 +610,7 @@ static void CrashHandler( int signal, siginfo_t* info, void* ucontext )
item->crashReport.text = (uint64_t)s_crashText;
tail.store( magic + 1, std::memory_order_release );
s_profiler.SendCallstack( 60, thread );
s_profiler.SendCallstack( 60, thread, "__kernel_rt_sigreturn" );
}
DIR* dp = opendir( "/proc/self/task" );