-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Add sigprocmask function #582
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
Conversation
@bors: r+ Thanks! |
📌 Commit 5306983 has been approved by |
Add sigprocmask function sigprocmask is currently missing, this adds the definition for sigprocmask into the main list of Unix functions. This should be standard across all the Unix-like systems supported. Note that the constants for 'how' (SIG_SETMASK, SIG_BLOCK, SIG_UNBLOCK) are already defined, it is only this function that is missing.
💔 Test failed - status-travis |
Any chance you could run the failed test again? It seems like it could be a fluke somehow. The failed test is i386-apple-ios and it just hung there with no output. The same test ran fine on my original pull request. |
@bors: retry
yeah let's try again
…On Tue, Apr 25, 2017 at 9:27 AM, Matt Kilgore ***@***.***> wrote:
Any chance you could run the failed test again? It seems like it could be
a fluke somehow. The failed test is i386-apple-ios and it just hung there
with no output. The same test
<https://travis-ci.org/rust-lang/libc/jobs/225482521> ran fine on my
original pull request.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#582 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAD95F3TLvvAUWXvnLRCSGvVaODwNJUPks5rzgLAgaJpZM4NG_8o>
.
|
Add sigprocmask function sigprocmask is currently missing, this adds the definition for sigprocmask into the main list of Unix functions. This should be standard across all the Unix-like systems supported. Note that the constants for 'how' (SIG_SETMASK, SIG_BLOCK, SIG_UNBLOCK) are already defined, it is only this function that is missing.
☀️ Test successful - status-appveyor, status-travis |
sigprocmask is currently missing, this adds the definition for sigprocmask into the main list of Unix functions. This should be standard across all the Unix-like systems supported.
Note that the constants for 'how' (SIG_SETMASK, SIG_BLOCK, SIG_UNBLOCK) are already defined, it is only this function that is missing.