mirror of git://git.musl-libc.org/musl
fix another ppoll issue (missing sigset_t size argument)
This commit is contained in:
parent
1701e4f3d4
commit
a9555a995c
|
@ -5,5 +5,5 @@
|
||||||
int ppoll(struct pollfd *fds, nfds_t n, const struct timespec *to, const sigset_t *mask)
|
int ppoll(struct pollfd *fds, nfds_t n, const struct timespec *to, const sigset_t *mask)
|
||||||
{
|
{
|
||||||
return syscall_cp(SYS_ppoll, fds, n,
|
return syscall_cp(SYS_ppoll, fds, n,
|
||||||
to ? (struct timespec []){*to} : 0, mask);
|
to ? (struct timespec []){*to} : 0, mask, __SYSCALL_SSLEN);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue