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

Change process spawning to inherit the parent's signal mask by default #101077

Merged
merged 1 commit into from
Oct 21, 2022

Commits on Oct 20, 2022

  1. Change process spawning to inherit the parent's signal mask by default

    Previously, the signal mask is always reset when a child process is
    started. This breaks tools like `nohup` which expect `SIGHUP` to be
    blocked.
    
    With this change, the default behavior changes to inherit the signal mask.
    
    This also changes the signal disposition for `SIGPIPE` to only be
    changed if the `#[unix_sigpipe]` attribute isn't set.
    sunshowers committed Oct 20, 2022
    Configuration menu
    Copy the full SHA
    a52c79e View commit details
    Browse the repository at this point in the history