提交 ad588184 编写于 作者: R Rich Felker

clean up pthread_sigmask/sigprocmask dependency order

it's nicer for the function that doesn't use errno to be independent,
and have the other one call it. saves some time and avoids clobbering
errno.
上级 544ee752
#include <signal.h> #include <signal.h>
#include <errno.h> #include <errno.h>
#include "syscall.h"
#include "libc.h"
#include "pthread_impl.h"
int sigprocmask(int how, const sigset_t *set, sigset_t *old) int sigprocmask(int how, const sigset_t *set, sigset_t *old)
{ {
if (how > 2U) { int r = pthread_sigmask(how, set, old);
errno = EINVAL; if (!r) return r;
return -1; errno = r;
} return -1;
return syscall(SYS_rt_sigprocmask, how, set, old, 8);
} }
#include <signal.h> #include <signal.h>
#include <errno.h> #include <errno.h>
#include <pthread.h> #include <pthread.h>
#include "syscall.h"
int pthread_sigmask(int how, const sigset_t *set, sigset_t *old) int pthread_sigmask(int how, const sigset_t *set, sigset_t *old)
{ {
int ret = sigprocmask(how, set, old); if (how > 2U) return EINVAL;
if (ret) return errno; return -__syscall(SYS_rt_sigprocmask, how, set, old, 8);
return 0;
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册