diff options
| author | Peter Maydell | 2014-09-19 03:35:20 +0200 |
|---|---|---|
| committer | Riku Voipio | 2014-10-06 20:52:45 +0200 |
| commit | 40645c7bfd7c4d45381927e1e80081fa827c368a (patch) | |
| tree | a578197d173075d03f6aab3cae7854fe2f35ae60 /linux-user | |
| parent | gdbstub: Allow target CPUs to specify watchpoint STOP_BEFORE_ACCESS flag (diff) | |
| download | qemu-40645c7bfd7c4d45381927e1e80081fa827c368a.tar.gz qemu-40645c7bfd7c4d45381927e1e80081fa827c368a.tar.xz qemu-40645c7bfd7c4d45381927e1e80081fa827c368a.zip | |
linux-user: Enable epoll_pwait syscall for ARM
We have support for the epoll_pwait syscall, but it wasn't enabled for
ARM guests because we hadn't defined the syscall number; correct this
deficiency.
Reported-by: Dave Flogeras <dflogeras2@gmail.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Diffstat (limited to 'linux-user')
| -rw-r--r-- | linux-user/arm/syscall_nr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/arm/syscall_nr.h b/linux-user/arm/syscall_nr.h index bef847cfae..7d7be7cfe9 100644 --- a/linux-user/arm/syscall_nr.h +++ b/linux-user/arm/syscall_nr.h @@ -350,7 +350,7 @@ #define TARGET_NR_vmsplice (343) #define TARGET_NR_move_pages (344) #define TARGET_NR_getcpu (345) - /* 346 for epoll_pwait */ +#define TARGET_NR_epoll_pwait (346) #define TARGET_NR_kexec_load (347) #define TARGET_NR_utimensat (348) #define TARGET_NR_signalfd (349) |
