Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-09-15 12:33:39 +0300
committerGitHub <noreply@github.com>2022-09-15 12:33:39 +0300
commitaa017e6a76758460ffef67b9e525427da2cf5c91 (patch)
tree3f8a7a7596c0dd45720242c20967ef0d9b8824b5 /public
parent0fc1c0f92786013d89992e85e7381f434dd001ae (diff)
parente8b3d22d76902cb9a13aa9e7b011ffee27f417fc (diff)
Merge pull request #468 from sherief/exception-handler-fix
Windows exception handler allows other handlers to be called.
Diffstat (limited to 'public')
-rw-r--r--public/client/TracyProfiler.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/public/client/TracyProfiler.cpp b/public/client/TracyProfiler.cpp
index a6933431..6985cf99 100644
--- a/public/client/TracyProfiler.cpp
+++ b/public/client/TracyProfiler.cpp
@@ -843,8 +843,6 @@ LONG WINAPI CrashFilter( PEXCEPTION_POINTERS pExp )
GetProfiler().RequestShutdown();
while( !GetProfiler().HasShutdownFinished() ) { std::this_thread::sleep_for( std::chrono::milliseconds( 10 ) ); };
- TerminateProcess( GetCurrentProcess(), 1 );
-
return EXCEPTION_CONTINUE_SEARCH;
}
#endif