Skip to content
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

Drop support for IID_ICorDebugProcess10 and fix thread suspend logic #44549

Merged
merged 2 commits into from
Nov 11, 2020

Conversation

sdmaclea
Copy link
Contributor

@sdmaclea sdmaclea commented Nov 11, 2020

Prevent older VS versions from setting managed data breakpoints.
@sdmaclea sdmaclea added this to the 6.0.0 milestone Nov 11, 2020
@sdmaclea sdmaclea self-assigned this Nov 11, 2020
@ghost
Copy link

ghost commented Nov 11, 2020

Tagging subscribers to this area: @tommcdon
See info in area-owners.md if you want to be subscribed.


Issue meta data
Issue content:
Issue author: sdmaclea
Assignees: sdmaclea
Milestone: [object Object]

//
|| (CORDebuggerAttached() &&
(g_pDebugInterface->ThreadsAtUnsafePlaces() || g_pDebugInterface->IsSynchronizing()))
|| (CORDebuggerAttached() && g_pDebugInterface->ThreadsAtUnsafePlaces())
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a simplification of @kouvel's change as proposed in #44539 (comment)

Copy link
Member

@noahfalk noahfalk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM : )

@hoyosjs
Copy link
Member

hoyosjs commented Nov 11, 2020

@chuckries So going forward:

New versions of a debugger will just use the new mechanism for 5.0.1+ and notifications for 3.1 and below, where there is no risk of deadlocks?

On older versions 6.0+ will fail the QI so they just can't use DBP, 5.0.0 will potentially deadlock, 5.0.1 should probably also remove the QI to make it possible to just have the behavior in a good state for 5.0.x, and 3.1 work as usual.

Is this correct?

If so, this PR looks good to me

@sdmaclea
Copy link
Contributor Author

sdmaclea commented Nov 11, 2020

@hoyosjs Yes the plan is to back port this and #44549 to .NET 5.0.x I didn't include the more general clean up to remove GC Event notifications in this PR to make it easier to get through servicing.

@kouvel
Copy link
Member

kouvel commented Nov 11, 2020

If an unpatched VS tries to add a data breakpoint to a patched runtime, would it fail?

@kouvel
Copy link
Member

kouvel commented Nov 11, 2020

Oh I see it would look like the patched runtime does not support DBs, think I got it now. LGTM too, thanks!

@sdmaclea sdmaclea merged commit c8c0790 into dotnet:master Nov 11, 2020
sdmaclea added a commit to sdmaclea/runtime that referenced this pull request Nov 11, 2020
…otnet#44549)

* Stop providing IID_ICorDebugProcess10

Prevent older VS versions from setting managed data breakpoints.

* Simplify the thread collision logic to prevent deadlock

This is a simplification of dotnet#44539
as proposed by @kouvel
sdmaclea added a commit that referenced this pull request Nov 24, 2020
#44563)

* Add ICorDebugHeapValue4 -- CreatePinnedHandle (#44471)

* Add ICorDebugHeapValue4
* Add EnableGCNotificationEvents deprecation comment

* Drop support for IID_ICorDebugProcess10 and fix thread suspend logic (#44549)

* Stop providing IID_ICorDebugProcess10

Prevent older VS versions from setting managed data breakpoints.

* Simplify the thread collision logic to prevent deadlock

This is a simplification of #44539
as proposed by @kouvel
@ghost ghost locked as resolved and limited conversation to collaborators Dec 12, 2020
@sdmaclea sdmaclea deleted the createPinnedHandle branch June 10, 2021 00:31
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants