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

inspector: more conservative minimum stack size #27855

Closed
wants to merge 2 commits into from

Commits on Jun 1, 2019

  1. inspector: more conservative minimum stack size

    PTHREAD_STACK_MIN is 2 KB with musl, which is too small to safely
    receive signals. PTHREAD_STACK_MIN + MINSIGSTKSZ is 8 KB on arm64,
    which is the musl architecture with the biggest MINSIGSTKSZ so let's
    use that as a lower bound and let's quadruple it just in case.
    bnoordhuis committed Jun 1, 2019
    Configuration menu
    Copy the full SHA
    a28deaa View commit details
    Browse the repository at this point in the history
  2. squash

    bnoordhuis committed Jun 1, 2019
    Configuration menu
    Copy the full SHA
    ee68f56 View commit details
    Browse the repository at this point in the history