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

Dynamically allocate the alternate signal stack #10266

Merged
merged 3 commits into from Mar 5, 2021

Commits on Mar 2, 2021

  1. Dynamically allocate the alternate signal stack

    In Glibc 2.34 and later, SIGSTKSZ may not be a compile-time constant.
    It is no longer possible to statically allocate the alternate signal
    stack for the main thread, as we've been doing for the last 25 years.
    
    This commit implements dynamic allocation of the alternate signal stack
    even for the main thread.  It reuses the code already in place to allocate
    the alternate signal stack for other threads.
    
    Fixes: ocaml#10250.
    xavierleroy committed Mar 2, 2021
    Configuration menu
    Copy the full SHA
    632563b View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2021

  1. Typo in comment

    xavierleroy committed Mar 3, 2021
    Configuration menu
    Copy the full SHA
    9f5b312 View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2021

  1. Update Changes

    xavierleroy committed Mar 5, 2021
    Configuration menu
    Copy the full SHA
    1a6cc60 View commit details
    Browse the repository at this point in the history