qemu-patch-raspberry4/linux-user/riscv/syscall_nr.h
Alistair Francis 50efc69586 linux-user/riscv: Update the syscall_nr's to the 5.5 kernel
Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <8e512fa2dc885aafc4d9c4013ee033442827a4a0.1584051142.git.alistair.francis@wdc.com>
[lv: guard sys_futex with TARGET_NR_exit]
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
2020-03-20 16:01:59 +01:00

16 lines
281 B
C

/*
* Syscall numbers from asm-generic, common for most
* of recently-added arches including RISC-V.
*/
#ifndef LINUX_USER_RISCV_SYSCALL_NR_H
#define LINUX_USER_RISCV_SYSCALL_NR_H
#ifdef TARGET_RISCV32
# include "syscall32_nr.h"
#else
# include "syscall64_nr.h"
#endif
#endif