fix local-dynamic model TLS on mips and powerpc
[musl.git] / src / select / pselect.c
blob4e2d7b073dbad9eee66d09cdab1af9922ce6bc8b
1 #include <sys/select.h>
2 #include <signal.h>
3 #include <stdint.h>
4 #include "syscall.h"
5 #include "libc.h"
7 int pselect(int n, fd_set *restrict rfds, fd_set *restrict wfds, fd_set *restrict efds, const struct timespec *restrict ts, const sigset_t *restrict mask)
9 syscall_arg_t data[2] = { (uintptr_t)mask, _NSIG/8 };
10 struct timespec ts_tmp;
11 if (ts) ts_tmp = *ts;
12 return syscall_cp(SYS_pselect6, n, rfds, wfds, efds, ts ? &ts_tmp : 0, data);