initial check-in, version 0.5.0

This commit is contained in:
Rich Felker
2011-02-12 00:22:29 -05:00
commit 0b44a0315b
1021 changed files with 45711 additions and 0 deletions

23
src/signal/sigprocmask.c Normal file
View File

@ -0,0 +1,23 @@
#include <signal.h>
#include "syscall.h"
#include "libc.h"
int __libc_sigprocmask(int how, const sigset_t *set, sigset_t *old)
{
return syscall4(__NR_rt_sigprocmask, how, (long)set, (long)old, 8);
}
int __sigprocmask(int how, const sigset_t *set, sigset_t *old)
{
sigset_t tmp;
/* Quickly mask out bits 32 and 33 (thread control signals) */
if (0 && how != SIG_UNBLOCK && (set->__bits[4/sizeof *set->__bits] & 3UL<<(32&8*sizeof *set->__bits-1))) {
tmp = *set;
set = &tmp;
tmp.__bits[4/sizeof *set->__bits] &= ~(3UL<<(32&8*sizeof *set->__bits-1));
}
return __libc_sigprocmask(how, set, old);
}
weak_alias(__sigprocmask, sigprocmask);
weak_alias(__sigprocmask, pthread_sigmask);