diff options
author | 2023-01-09 09:09:07 +0100 | |
---|---|---|
committer | 2023-01-09 09:36:05 -0800 | |
commit | 18a5a09d90a75f40d5dcd3bd2ff9052845f36c37 (patch) | |
tree | 71053596a710a4023030bc8d5ec41b062b04cd79 /tools/include/nolibc/sys.h | |
parent | tools/nolibc: fix the O_* fcntl/open macro definitions for riscv (diff) | |
download | wireguard-linux-18a5a09d90a75f40d5dcd3bd2ff9052845f36c37.tar.xz wireguard-linux-18a5a09d90a75f40d5dcd3bd2ff9052845f36c37.zip |
nolibc: add support for s390
Use arch-x86_64 as a template. Not really different, but
we have our own mmap syscall which takes a structure instead
of discrete arguments.
Signed-off-by: Sven Schnelle <svens@linux.ibm.com>
Acked-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Willy Tarreau <w@1wt.eu>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | tools/include/nolibc/sys.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/include/nolibc/sys.h b/tools/include/nolibc/sys.h index 78473d34e27c..a42d7c405bdc 100644 --- a/tools/include/nolibc/sys.h +++ b/tools/include/nolibc/sys.h @@ -686,6 +686,7 @@ int mknod(const char *path, mode_t mode, dev_t dev) #define MAP_FAILED ((void *)-1) #endif +#ifndef sys_mmap static __attribute__((unused)) void *sys_mmap(void *addr, size_t length, int prot, int flags, int fd, off_t offset) @@ -707,6 +708,7 @@ void *sys_mmap(void *addr, size_t length, int prot, int flags, int fd, return (void *)my_syscall6(n, addr, length, prot, flags, fd, offset); #endif } +#endif static __attribute__((unused)) void *mmap(void *addr, size_t length, int prot, int flags, int fd, off_t offset) |