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/powerpc | |
| parent | fc6d8cac7f90286072cdb8be99ff04e905aa2efe (diff) | |
Add preadv(2) and pwritev(2) system calls to COMPAT_LINUX and COMPAT_LINUX32.
Diffstat (limited to 'sys/compat/linux/arch/powerpc')
| -rw-r--r-- | sys/compat/linux/arch/powerpc/syscalls.master | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sys/compat/linux/arch/powerpc/syscalls.master b/sys/compat/linux/arch/powerpc/syscalls.master index 7bf500f0bbd..aa9a0662db9 100644 --- a/sys/compat/linux/arch/powerpc/syscalls.master +++ b/sys/compat/linux/arch/powerpc/syscalls.master @@ -1,4 +1,4 @@ - $NetBSD: syscalls.master,v 1.77 2021/09/20 00:09:01 thorpej Exp $ + $NetBSD: syscalls.master,v 1.78 2021/09/20 02:20:02 thorpej Exp $ ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93 @@ -553,8 +553,12 @@ 317 STD { int|linux_sys||pipe2(int *pfds, int flags); } 318 UNIMPL inotify_init1 319 UNIMPL perf_event_open -320 UNIMPL preadv -321 UNIMPL pwritev +320 STD { int|linux_sys||preadv(int fd, \ + const struct iovec *iovp, int iovcnt, \ + unsigned long off_lo, unsigned long off_hi); } +321 STD { int|linux_sys||pwritev(int fd, \ + const struct iovcnt *iovp, int iovcnt, \ + unsigned long off_lo, unsigned long off_hi); } 322 UNIMPL rt_tgsigqueueinfo 323 UNIMPL fanotify_init 324 UNIMPL fanotify_mark |
