summaryrefslogtreecommitdiff
path: root/sys/compat/linux/arch/mips
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/mips
parentfc6d8cac7f90286072cdb8be99ff04e905aa2efe (diff)
Add preadv(2) and pwritev(2) system calls to COMPAT_LINUX and COMPAT_LINUX32.
Diffstat (limited to 'sys/compat/linux/arch/mips')
-rw-r--r--sys/compat/linux/arch/mips/syscalls.master10
1 files changed, 7 insertions, 3 deletions
diff --git a/sys/compat/linux/arch/mips/syscalls.master b/sys/compat/linux/arch/mips/syscalls.master
index fb4f0edf143..7381210a292 100644
--- a/sys/compat/linux/arch/mips/syscalls.master
+++ b/sys/compat/linux/arch/mips/syscalls.master
@@ -1,4 +1,4 @@
- $NetBSD: syscalls.master,v 1.71 2021/09/20 00:09:01 thorpej Exp $
+ $NetBSD: syscalls.master,v 1.72 2021/09/20 02:20:02 thorpej Exp $
; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
@@ -553,8 +553,12 @@
327 STD { int|linux_sys||dup3(int from, int to, int flags); }
328 STD { int|linux_sys||pipe2(int *pfds, int flags); }
329 UNIMPL inotify_init1
-330 UNIMPL preadv
-331 UNIMPL pwritev
+330 STD { int|linux_sys||preadv(int fd, \
+ const struct iovec *iovp, int iovcnt, \
+ unsigned long off_lo, unsigned long off_hi); }
+331 STD { int|linux_sys||pwritev(int fd, \
+ const struct iovcnt *iovp, int iovcnt, \
+ unsigned long off_lo, unsigned long off_hi); }
332 UNIMPL rt_tgsigqueueinfo
333 UNIMPL perf_event_open
334 STD { int|linux_sys||accept4(int s, \