Skip to content

Commit 40645c7

Browse files
pm215Riku Voipio
authored and
Riku Voipio
committed
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 <[email protected]> Signed-off-by: Peter Maydell <[email protected]> Signed-off-by: Riku Voipio <[email protected]>
1 parent 2472b6c commit 40645c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: linux-user/arm/syscall_nr.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@
350350
#define TARGET_NR_vmsplice (343)
351351
#define TARGET_NR_move_pages (344)
352352
#define TARGET_NR_getcpu (345)
353-
/* 346 for epoll_pwait */
353+
#define TARGET_NR_epoll_pwait (346)
354354
#define TARGET_NR_kexec_load (347)
355355
#define TARGET_NR_utimensat (348)
356356
#define TARGET_NR_signalfd (349)

0 commit comments

Comments
 (0)