2 * Wrappers around Linux futex syscall
4 * Copyright Red Hat, Inc. 2017
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
17 #include <sys/syscall.h>
18 #include <linux/futex.h>
20 #define qemu_futex(...) syscall(__NR_futex, __VA_ARGS__)
22 static inline void qemu_futex_wake(void *f, int n)
24 qemu_futex(f, FUTEX_WAKE, n, NULL, NULL, 0);
27 static inline void qemu_futex_wait(void *f, unsigned val)
29 while (qemu_futex(f, FUTEX_WAIT, (int) val, NULL, NULL, 0)) {
34 break; /* get out of switch and retry */
41 #endif /* QEMU_FUTEX_H */