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

Avoid infinite generics recursion in SynchronizationContextScheduler #1116

Merged
merged 1 commit into from Dec 24, 2019

Commits on Dec 24, 2019

  1. Avoid infinite generics recursion in SynchronizationContextScheduler

    The infinitive generics recursion interacts poorly with AOT. The AOT compilers have hard figuring
    out where the stop generating the code for generics with infinite recursion. They either fail or
    produce large images by giving up once the generics get too complex.
    
    This change reverts a small part of dotnet#500 that introduced infinite generic recursion and adds comment.
    
    Fixes dotnet/corert#7920
    jkotas committed Dec 24, 2019
    Configuration menu
    Copy the full SHA
    3cebafa View commit details
    Browse the repository at this point in the history