summaryrefslogtreecommitdiff
path: root/sys/compat/linux/arch/arm
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>2021-09-20 02:20:02 +0000
committerthorpej <thorpej@NetBSD.org>2021-09-20 02:20:02 +0000
commitce1f7c4e8f4ee0cdcfa7972f15dfb6832fa259fd (patch)
tree5e896d9a365575353c6597d46dabde81dbdb6fb6 /sys/compat/linux/arch/arm
parentfc6d8cac7f90286072cdb8be99ff04e905aa2efe (diff)
Add preadv(2) and pwritev(2) system calls to COMPAT_LINUX and COMPAT_LINUX32.
Diffstat (limited to 'sys/compat/linux/arch/arm')
-rw-r--r--sys/compat/linux/arch/arm/syscalls.master10
1 files changed, 7 insertions, 3 deletions
diff --git a/sys/compat/linux/arch/arm/syscalls.master b/sys/compat/linux/arch/arm/syscalls.master
index 6e28818057d..cf32f7dc9a1 100644
--- a/sys/compat/linux/arch/arm/syscalls.master
+++ b/sys/compat/linux/arch/arm/syscalls.master
@@ -1,4 +1,4 @@
- $NetBSD: syscalls.master,v 1.72 2021/09/20 00:09:01 thorpej Exp $
+ $NetBSD: syscalls.master,v 1.73 2021/09/20 02:20:02 thorpej Exp $
; Derived from sys/compat/linux/arch/*/syscalls.master
; and from Linux 2.4.12 arch/arm/kernel/calls.S
@@ -579,8 +579,12 @@
358 STD { int|linux_sys||dup3(int from, int to, int flags); }
359 STD { int|linux_sys||pipe2(int *pfds, int flags); }
360 UNIMPL inotify_init1
-361 UNIMPL preadv
-362 UNIMPL pwritev
+361 STD { int|linux_sys||preadv(int fd, \
+ const struct iovec *iovp, int iovcnt, \
+ unsigned long off_lo, unsigned long off_hi); }
+362 STD { int|linux_sys||pwritev(int fd, \
+ const struct iovcnt *iovp, int iovcnt, \
+ unsigned long off_lo, unsigned long off_hi); }
363 UNIMPL rt_tgsigqueueinfo
364 UNIMPL perf_counter_open
365 STD { int|linux_sys||recvmmsg(int s, \