#CFLAGS += -fomit-frame-pointer -mno-accumulate-outgoing-args
# Uncomment for warnings (as errors). Might need tuning to your gcc version.
-#CFLAGS += -Werror -Wall -Wpointer-arith -Wcast-align -Wno-parentheses -Wno-char-subscripts -Wno-uninitialized -Wno-sequence-point -Wno-missing-braces -Wno-unused-value
+#CFLAGS += -Werror -Wall -Wpointer-arith -Wcast-align -Wno-parentheses -Wno-char-subscripts -Wno-uninitialized -Wno-sequence-point -Wno-missing-braces -Wno-unused-value -Wno-overflow -Wno-int-to-pointer-cast
# Uncomment if you want to build a shared library (experimental).
#LIBC_LIBS += lib/libc.so
#include "pthread_arch.h"
-#define SIGCANCEL 32
-#define SIGSYSCALL 33
-#define SIGTIMER 34
+#define SIGTIMER 32
+#define SIGCANCEL 33
+#define SIGSYSCALL 34
+
+#define SIGPT_SET ((sigset_t){{[sizeof(long)==4] = 3<<(32*(sizeof(long)>4))}})
+#define SIGTIMER_SET ((sigset_t){{ 0x80000000 }})
int __set_thread_area(void *);
int __libc_sigaction(int, const struct sigaction *, struct sigaction *);
#include <signal.h>
#include <errno.h>
+#include <stdint.h>
#include "syscall.h"
-int __sigprocmask(int, const sigset_t *, sigset_t *);
-
int raise(int sig)
{
int pid, tid, ret;
sigset_t set;
- sigfillset(&set);
- __sigprocmask(SIG_BLOCK, &set, &set);
+ __syscall(SYS_rt_sigprocmask, SIG_BLOCK, (uint64_t[]){-1}, &set, 8);
tid = syscall(SYS_gettid);
pid = syscall(SYS_getpid);
ret = syscall(SYS_tgkill, pid, tid, sig);
- __sigprocmask(SIG_SETMASK, &set, 0);
+ __syscall(SYS_rt_sigprocmask, SIG_SETMASK, &set, 0, 8);
return ret;
}
int __sigaction(int sig, const struct sigaction *sa, struct sigaction *old)
{
- if (sig-SIGCANCEL < 3U) {
+ if (sig-32U < 3) {
errno = EINVAL;
return -1;
}
int sigaddset(sigset_t *set, int sig)
{
unsigned s = sig-1;
- if (s >= 8*sizeof(sigset_t)) {
+ if (s >= 8*sizeof(sigset_t) || s-32U<3) {
errno = EINVAL;
return -1;
}
int sigdelset(sigset_t *set, int sig)
{
unsigned s = sig-1;
- if (s >= 8*sizeof(sigset_t)) {
+ if (s >= 8*sizeof(sigset_t) || s-32U<3) {
errno = EINVAL;
return -1;
}
int sigemptyset(sigset_t *set)
{
- memset(set, 0, sizeof *set);
+ set->__bits[0] = 0;
+ if (sizeof(long)==4) set->__bits[1] = 0;
return 0;
}
#include <signal.h>
#include <string.h>
+#include <limits.h>
int sigfillset(sigset_t *set)
{
- memset(set, -1, sizeof *set);
+#if ULONG_MAX == 0xffffffff
+ set->__bits[0] = 0x7ffffffful;
+ set->__bits[1] = 0xfffffffcul;
+#else
+ set->__bits[0] = 0xfffffffc7ffffffful;
+#endif
return 0;
}
int sigismember(const sigset_t *set, int sig)
{
unsigned s = sig-1;
- if (s >= 8*sizeof(sigset_t)) {
+ if (s >= 8*sizeof(sigset_t) || s-32U<3) {
errno = EINVAL;
return -1;
}
#include "libc.h"
#include "pthread_impl.h"
-int __libc_sigprocmask(int how, const sigset_t *set, sigset_t *old)
+int sigprocmask(int how, const sigset_t *set, sigset_t *old)
{
- return syscall(SYS_rt_sigprocmask, how, set, old, 8);
-}
-
-int __sigprocmask(int how, const sigset_t *set, sigset_t *old)
-{
- sigset_t tmp;
if (how > 2U) {
errno = EINVAL;
return -1;
}
- /* Disallow blocking thread control signals */
- if (set && how != SIG_UNBLOCK) {
- tmp = *set;
- set = &tmp;
- sigdelset(&tmp, SIGCANCEL);
- sigdelset(&tmp, SIGSYSCALL);
- sigdelset(&tmp, SIGTIMER);
- }
- return __libc_sigprocmask(how, set, old);
+ return syscall(SYS_rt_sigprocmask, how, set, old, 8);
}
-
-weak_alias(__sigprocmask, sigprocmask);
while ((i=rs.blocks))
__wait(&rs.blocks, 0, i, 1);
- sigfillset(&set);
- __libc_sigprocmask(SIG_BLOCK, &set, &set);
+ __syscall(SYS_rt_sigprocmask, SIG_BLOCK, (uint64_t[]){-1}, &set, 8);
if (!rs.init) {
struct sigaction sa = {
}
/* Handle any lingering signals with no-op */
- __libc_sigprocmask(SIG_UNBLOCK, &set, &set);
+ __syscall(SYS_rt_sigprocmask, SIG_SETMASK, &set, &set, 8);
/* Resume other threads' signal handlers and wait for them */
rs.hold = 0;
if (!n) exit(0);
if (self->detached && self->map_base) {
- __syscall(SYS_rt_sigprocmask, SIG_BLOCK, (long)(uint64_t[1]){-1},0,8);
+ __syscall(SYS_rt_sigprocmask, SIG_BLOCK, (uint64_t[]){-1},0,8);
__unmapself(self->map_base, self->map_size);
}
static int start(void *p)
{
struct pthread *self = p;
- if (self->unblock_cancel) {
- sigset_t set;
- sigemptyset(&set);
- sigaddset(&set, SIGCANCEL);
- __libc_sigprocmask(SIG_UNBLOCK, &set, 0);
- }
+ if (self->unblock_cancel)
+ __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, &SIGPT_SET, 0, 8);
pthread_exit(self->start(self->start_arg));
return 0;
}
if (!self) return ENOSYS;
if (!libc.threaded) {
- sigset_t set;
- sigemptyset(&set);
- sigaddset(&set, SIGSYSCALL);
- sigaddset(&set, SIGCANCEL);
- __libc_sigprocmask(SIG_UNBLOCK, &set, 0);
+ __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, &SIGPT_SET, 0, 8);
libc.threaded = 1;
}
.sa_flags = SA_SIGINFO | SA_RESTART
};
__libc_sigaction(SIGTIMER, &sa, 0);
- sigaddset(&sa.sa_mask, SIGTIMER);
- __libc_sigprocmask(SIG_UNBLOCK, &sa.sa_mask, 0);
+ __syscall(SYS_rt_sigprocmask, SIG_UNBLOCK, &SIGTIMER_SET, 0, 8);
}
static void *start(void *arg)