From 8c0ff677965241c24ebc7eece568568140766c24 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Mon, 20 Aug 2018 22:21:35 +0200 Subject: [PATCH] Cut windows crash call stack at the exception dispatcher. --- client/TracyProfiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/TracyProfiler.cpp b/client/TracyProfiler.cpp index b811d6f4..8fb145e9 100644 --- a/client/TracyProfiler.cpp +++ b/client/TracyProfiler.cpp @@ -376,7 +376,7 @@ LONG WINAPI CrashFilter( PEXCEPTION_POINTERS pExp ) 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, "KiUserExceptionDispatcher" ); } HANDLE h = CreateToolhelp32Snapshot( TH32CS_SNAPTHREAD, 0 );