Crashdump hanging #886
Replies: 1 comment 3 replies
-
Hi @rminderhoud! To clarify: Do you mean your process is stuck after the last log line ( What do you mean when you say
? Is the Just for a little context of why I ask these questions:
Minor warning: Please don't keep the debugger running during the crash because the debugger will receive the crash instead of the handler in the Native SDK. You can run the debugger before the crash (to verify the start of the external process) or attach it after the crash (if the process is stuck long enough). |
Beta Was this translation helpful? Give feedback.
-
Hello, I just integrated
sentry-native
into our CMake project and everything seems to be working well with sentry but it looks like the call tocrashpad_handler.exe
seems to be hanging.OS: Windows 10 (64-bit)
Compiler: MSVC 14.35.32215
Build: sentry-native 0.6.5 (static, crashpad, winhttp)
I've confirmed that
sentry_capture_event
works if the program executes normally. However once I introduce a crash, e.g.throw
or*((int*)0) = 0;
it hands on invokingcrash_handler.exe
. I've configured sentry database location and can see the dumps being created. I also configured the path to thecrash_handler.exe
rather than relying on the default:Here are the debug logs from my last test:
Any advice on how I can debug this? Watching the process manager I don't see
crashpad_handler.exe
calledBeta Was this translation helpful? Give feedback.
All reactions