mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
linux-user: avoid using glibc internals in _syscall5 and in definition of target_sigevent struct
Use the public sigset_t instead of the glibc specific internal __sigset_t in _syscall. Calculate the sigevent pad size is calculated in similar way as kernel does it instead of using glibc internal field _pad. This is needed for building with musl libc. Signed-off-by: Natanael Copa <ncopa@alpinelinux.org> Signed-off-by: Riku Voipio <riku.voipio@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
a29e5ba21f
commit
34d6086236
2 changed files with 16 additions and 2 deletions
|
@ -411,7 +411,7 @@ static int sys_inotify_init1(int flags)
|
|||
#endif
|
||||
#define __NR_sys_ppoll __NR_ppoll
|
||||
_syscall5(int, sys_ppoll, struct pollfd *, fds, nfds_t, nfds,
|
||||
struct timespec *, timeout, const __sigset_t *, sigmask,
|
||||
struct timespec *, timeout, const sigset_t *, sigmask,
|
||||
size_t, sigsetsize)
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue