This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "uClibc-ng - small C library for embedded systems".
The branch, 1.0 has been updated
via d1b81113b43a6d26dec4e0e58a380895d121006e (commit)
from 507f795a5969fcba5196236e706aecab5ee91dd9 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit d1b81113b43a6d26dec4e0e58a380895d121006e
Author: Waldemar Brodkorb <wbx(a)uclibc-ng.org>
Date: Fri Dec 11 09:02:22 2015 +0100
Revert "fix tst-signal7 failure"
This reverts commit ea21c7610aa1131b37a4533cf13dd89f727fb83f.
This was accidently pushed, before first coffee.
Sorry this is a bad commit.
-----------------------------------------------------------------------
Summary of changes:
libc/signal/sigaction.c | 10 ----------
1 file changed, 10 deletions(-)
diff --git a/libc/signal/sigaction.c b/libc/signal/sigaction.c
index 0a02998..2560647 100644
--- a/libc/signal/sigaction.c
+++ b/libc/signal/sigaction.c
@@ -25,11 +25,6 @@
int
__libc_sigaction(int sig, const struct sigaction *act, struct sigaction *oact)
{
- if (unlikely (sig == SIGCANCEL || sig == SIGSETXID)) {
- __set_errno (EINVAL);
- return -1;
- }
-
/* NB: kernel (as of 2.6.25) will return EINVAL
* if sizeof(act->sa_mask) does not match kernel's sizeof(sigset_t).
* Try to catch this problem at uclibc build time: */
@@ -53,11 +48,6 @@ __libc_sigaction(int sig, const struct sigaction *act, struct sigaction
*oact)
int result;
struct old_kernel_sigaction kact, koact;
- if (unlikely (sig == SIGCANCEL || sig == SIGSETXID)) {
- __set_errno (EINVAL);
- return -1;
- }
-
if (act) {
kact.k_sa_handler = act->sa_handler;
kact.sa_mask = act->sa_mask.__val[0];
hooks/post-receive
--
uClibc-ng - small C library for embedded systems