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

native: Ignore SIGPIPE by default #13158

Merged
merged 1 commit into from
Mar 28, 2014
Merged

Commits on Mar 28, 2014

  1. native: Ignore SIGPIPE by default

    Some unix platforms will send a SIGPIPE signal instead of returning EPIPE from a
    syscall by default. The native runtime doesn't install a SIGPIPE handler,
    causing the program to die immediately in this case. This brings the behavior in
    line with libgreen by ignoring SIGPIPE and propagating EPIPE upwards to the
    application in the form of an IoError.
    
    Closes rust-lang#13123
    alexcrichton committed Mar 28, 2014
    5 Configuration menu
    Copy the full SHA
    68c2706 View commit details
    Browse the repository at this point in the history