-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Add EAI_SYSTEM getaddrinfo error code. #402
Conversation
This is needed for rust-lang/rust#36546. I was looking at this earlier. Looks good to me. |
bitrig and openbsd definitions could be factorized in |
@semarie moved OpenBSD and Bitrig changes into common openbsdlike mod, thanks. @bvinc indeed, the issue rust-lang/rust#36546 was original motivation for this change. |
@bors: r+ |
📌 Commit cb24847 has been approved by |
Thanks! |
☔ The latest upstream changes (presumably #400) made this pull request unmergeable. Please resolve the merge conflicts. |
🔒 Merge conflict |
This is useful to decide if value returned from getaddrinfo is actual error or you should look at errno instead.
Rebased. |
@bors: r+ |
📌 Commit f514d46 has been approved by |
Add EAI_SYSTEM getaddrinfo error code. This is useful to decide if value returned from getaddrinfo is actual error or you should look at errno instead.
☀️ Test successful - status-appveyor, travis |
Replace parts of ffi module by libc functions ind sched.rs Not exporting `CpuMask` anymore, should be the only API change of this PR. Since the type is not used in any other exported signature or type, I think it is fine to no longer export it. r? @kamalmarhubi @posborne
This is useful to decide if value returned from getaddrinfo is actual
error or you should look at errno instead.