summaryrefslogtreecommitdiffstats
path: root/linux-user
diff options
context:
space:
mode:
authorRichard Henderson2022-08-29 04:10:01 +0200
committerLaurent Vivier2022-09-27 13:19:05 +0200
commita6180f8aede726c1648b1ae3a602058c93f859c8 (patch)
treeb14b76c6a2234c50c1f099e0c24cf6e1d1d395e1 /linux-user
parentlinux-user: Sink call to do_safe_futex (diff)
downloadqemu-a6180f8aede726c1648b1ae3a602058c93f859c8.tar.gz
qemu-a6180f8aede726c1648b1ae3a602058c93f859c8.tar.xz
qemu-a6180f8aede726c1648b1ae3a602058c93f859c8.zip
linux-user: Implement FUTEX_WAKE_BITSET
Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Message-Id: <20220829021006.67305-4-richard.henderson@linaro.org> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user')
-rw-r--r--linux-user/syscall.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 17e17f4804..e2b6b564e6 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -7789,6 +7789,7 @@ static int do_futex(CPUState *cpu, bool time64, target_ulong uaddr,
val = tswap32(val);
break;
case FUTEX_WAKE:
+ case FUTEX_WAKE_BITSET:
timeout = 0;
break;
case FUTEX_FD: