diff options
| author | Natanael Copa | 2014-04-29 13:11:20 +0200 |
|---|---|---|
| committer | Riku Voipio | 2014-05-02 20:59:28 +0200 |
| commit | 34d6086236baeb59f4b46e2380f2b271acd6f6cf (patch) | |
| tree | 8c06a8dede03f4e4660f7b23f3eb2ac81d112dde /linux-user/syscall.c | |
| parent | linux-user: Handle arches with llseek instead of _llseek (diff) | |
| download | qemu-34d6086236baeb59f4b46e2380f2b271acd6f6cf.tar.gz qemu-34d6086236baeb59f4b46e2380f2b271acd6f6cf.tar.xz qemu-34d6086236baeb59f4b46e2380f2b271acd6f6cf.zip | |
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>
Diffstat (limited to 'linux-user/syscall.c')
| -rw-r--r-- | linux-user/syscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 15de6f8d3d..af0bb3565c 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -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 |
