Map WSAESHUTDOWN to io::ErrorKind::BrokenPipe#156063
Merged
rust-bors[bot] merged 3 commits intorust-lang:mainfrom May 2, 2026
Merged
Map WSAESHUTDOWN to io::ErrorKind::BrokenPipe#156063rust-bors[bot] merged 3 commits intorust-lang:mainfrom
WSAESHUTDOWN to io::ErrorKind::BrokenPipe#156063rust-bors[bot] merged 3 commits intorust-lang:mainfrom
Conversation
Collaborator
|
|
Member
|
r? @ChrisDenton |
Collaborator
|
|
RalfJung
reviewed
May 1, 2026
Member
|
r=me once ralf's comment is addressed. I don't know if this needs a full FCP but at the very least someone from libs-api will need to sign off on it. cc @joshtriplett |
joshtriplett
reviewed
May 1, 2026
Member
|
I don't think this needs an FCP, but I'm nominating it for discussion. |
Member
|
@bors r+ rollup |
Contributor
|
📋 This PR cannot be approved because it currently has the following label: |
Member
|
@bors r+ rollup |
Contributor
rust-bors Bot
pushed a commit
that referenced
this pull request
May 2, 2026
Rollup of 4 pull requests Successful merges: - #154571 (Fix alias path for rustdoc) - #155749 (`-Znext-solver` Ignore region constraints from the nested goals in leakcheck) - #156026 (`bufreader::Buffer`: Remove leftover note about `initialized` field) - #156063 (Map `WSAESHUTDOWN` to `io::ErrorKind::BrokenPipe`)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
As discussed in #t-libs > WSAESHUTDOWN error on Windows, this adds the mapping for
WSAESHUTDOWNon Windows toio::ErrorKind::BrokenPipe.r? RalfJung