mirror of https://github.com/xemu-project/xemu.git
linux-user: Update MIPS syscall numbers up to kernel 4.18 headers
Synchronize content of linux-user/mips/syscall_nr.h and linux-user/mips64/syscall_nr.h with Linux kernel 4.18 headers. This adds 9 new syscall numbers, the last being NR_io_pgetevents. Reviewed-by: Laurent Vivier <laurent@vivier.eu> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com> Signed-off-by: Stefan Markovic <smarkovic@wavecomp.com>
This commit is contained in:
parent
c20eafa197
commit
977324ac8c
|
@ -363,3 +363,12 @@
|
|||
#define TARGET_NR_userfaultfd (TARGET_NR_Linux + 357)
|
||||
#define TARGET_NR_membarrier (TARGET_NR_Linux + 358)
|
||||
#define TARGET_NR_mlock2 (TARGET_NR_Linux + 359)
|
||||
#define TARGET_NR_copy_file_range (TARGET_NR_Linux + 360)
|
||||
#define TARGET_NR_preadv2 (TARGET_NR_Linux + 361)
|
||||
#define TARGET_NR_pwritev2 (TARGET_NR_Linux + 362)
|
||||
#define TARGET_NR_pkey_mprotect (TARGET_NR_Linux + 363)
|
||||
#define TARGET_NR_pkey_alloc (TARGET_NR_Linux + 364)
|
||||
#define TARGET_NR_pkey_free (TARGET_NR_Linux + 365)
|
||||
#define TARGET_NR_statx (TARGET_NR_Linux + 366)
|
||||
#define TARGET_NR_rseq (TARGET_NR_Linux + 367)
|
||||
#define TARGET_NR_io_pgetevents (TARGET_NR_Linux + 368)
|
||||
|
|
|
@ -327,6 +327,15 @@
|
|||
#define TARGET_NR_userfaultfd (TARGET_NR_Linux + 321)
|
||||
#define TARGET_NR_membarrier (TARGET_NR_Linux + 322)
|
||||
#define TARGET_NR_mlock2 (TARGET_NR_Linux + 323)
|
||||
#define TARGET_NR_copy_file_range (TARGET_NR_Linux + 324)
|
||||
#define TARGET_NR_preadv2 (TARGET_NR_Linux + 325)
|
||||
#define TARGET_NR_pwritev2 (TARGET_NR_Linux + 326)
|
||||
#define TARGET_NR_pkey_mprotect (TARGET_NR_Linux + 327)
|
||||
#define TARGET_NR_pkey_alloc (TARGET_NR_Linux + 328)
|
||||
#define TARGET_NR_pkey_free (TARGET_NR_Linux + 329)
|
||||
#define TARGET_NR_statx (TARGET_NR_Linux + 330)
|
||||
#define TARGET_NR_rseq (TARGET_NR_Linux + 331)
|
||||
#define TARGET_NR_io_pgetevents (TARGET_NR_Linux + 332)
|
||||
|
||||
#else
|
||||
/*
|
||||
|
@ -653,4 +662,13 @@
|
|||
#define TARGET_NR_userfaultfd (TARGET_NR_Linux + 317)
|
||||
#define TARGET_NR_membarrier (TARGET_NR_Linux + 318)
|
||||
#define TARGET_NR_mlock2 (TARGET_NR_Linux + 319)
|
||||
#define TARGET_NR_copy_file_range (TARGET_NR_Linux + 320)
|
||||
#define TARGET_NR_preadv2 (TARGET_NR_Linux + 321)
|
||||
#define TARGET_NR_pwritev2 (TARGET_NR_Linux + 322)
|
||||
#define TARGET_NR_pkey_mprotect (TARGET_NR_Linux + 323)
|
||||
#define TARGET_NR_pkey_alloc (TARGET_NR_Linux + 324)
|
||||
#define TARGET_NR_pkey_free (TARGET_NR_Linux + 325)
|
||||
#define TARGET_NR_statx (TARGET_NR_Linux + 326)
|
||||
#define TARGET_NR_rseq (TARGET_NR_Linux + 327)
|
||||
#define TARGET_NR_io_pgetevents (TARGET_NR_Linux + 328)
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue