-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix profiler evacuation loop logic #99075
Conversation
Tagging subscribers to this area: @tommcdon Issue DetailsThis way we get a crash dump when it fails.
|
I thought this was merged because I have a failure with a dump, but ...? |
@AndyAyersMS Thank you for sharing the link to the dumps! The profiled process is stuck waiting without making a progress in
even though there are
I think that that problem is in the following code: runtime/src/coreclr/vm/profdetach.cpp Lines 329 to 331 in 6ebba86
If we end up with two profilers wanting to detach at the same time, the |
I just pushed a commit with a fix for the loop condition |
This way we get a crash dump when it fails.