-
Notifications
You must be signed in to change notification settings - Fork 5.3k
remove RuntimeAsyncTaskCore #122505
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
remove RuntimeAsyncTaskCore #122505
Conversation
|
Tagging subscribers to this area: @mangod9 |
src/coreclr/System.Private.CoreLib/src/System/Runtime/CompilerServices/AsyncHelpers.CoreCLR.cs
Outdated
Show resolved
Hide resolved
src/coreclr/System.Private.CoreLib/src/System/Runtime/CompilerServices/AsyncHelpers.CoreCLR.cs
Outdated
Show resolved
Hide resolved
8a225d0 to
56f4d42
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR removes the RuntimeAsyncTaskCore nested static class and promotes its contents to the top level, simplifying the code structure. The change refactors how async dispatcher information is organized without altering the functional behavior.
Key changes:
- Moved
DispatcherInfostruct from nestedRuntimeAsyncTaskCoreclass to top-level asAsyncDispatcherInfo - Renamed static field from
t_dispatcherInfotot_current - Updated all references throughout the
DispatchContinuationsmethod to use the new type and variable names
Resolves #122355