diff options
| author | thorpej <thorpej@NetBSD.org> | 2021-09-20 02:20:02 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 2021-09-20 02:20:02 +0000 |
| commit | ce1f7c4e8f4ee0cdcfa7972f15dfb6832fa259fd (patch) | |
| tree | 5e896d9a365575353c6597d46dabde81dbdb6fb6 /sys/compat/linux/arch/amd64/syscalls.master | |
| parent | fc6d8cac7f90286072cdb8be99ff04e905aa2efe (diff) | |
Add preadv(2) and pwritev(2) system calls to COMPAT_LINUX and COMPAT_LINUX32.
Diffstat (limited to 'sys/compat/linux/arch/amd64/syscalls.master')
| -rw-r--r-- | sys/compat/linux/arch/amd64/syscalls.master | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sys/compat/linux/arch/amd64/syscalls.master b/sys/compat/linux/arch/amd64/syscalls.master index 328a3faddfe..c09e689b888 100644 --- a/sys/compat/linux/arch/amd64/syscalls.master +++ b/sys/compat/linux/arch/amd64/syscalls.master @@ -1,4 +1,4 @@ - $NetBSD: syscalls.master,v 1.65 2021/09/20 00:09:01 thorpej Exp $ + $NetBSD: syscalls.master,v 1.66 2021/09/20 02:20:02 thorpej Exp $ ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93 @@ -539,8 +539,12 @@ 292 STD { int|linux_sys||dup3(int from, int to, int flags); } 293 STD { int|linux_sys||pipe2(int *pfds, int flags); } 294 UNIMPL inotify_init1 -295 UNIMPL preadv -296 UNIMPL pwritev +295 STD { int|linux_sys||preadv(int fd, \ + const struct iovec *iovp, int iovcnt, \ + unsigned long off_lo, unsigned long off_hi); } +296 STD { int|linux_sys||pwritev(int fd, \ + const struct iovcnt *iovp, int iovcnt, \ + unsigned long off_lo, unsigned long off_hi); } 297 UNIMPL rt_tgsigqueueinfo 298 UNIMPL perf_counter_open 299 STD { int|linux_sys||recvmmsg(int s, \ |
