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/linux32/arch | |
| parent | fc6d8cac7f90286072cdb8be99ff04e905aa2efe (diff) | |
Add preadv(2) and pwritev(2) system calls to COMPAT_LINUX and COMPAT_LINUX32.
Diffstat (limited to 'sys/compat/linux32/arch')
| -rw-r--r-- | sys/compat/linux32/arch/amd64/syscalls.master | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sys/compat/linux32/arch/amd64/syscalls.master b/sys/compat/linux32/arch/amd64/syscalls.master index 58bba2f6273..2518892c9ff 100644 --- a/sys/compat/linux32/arch/amd64/syscalls.master +++ b/sys/compat/linux32/arch/amd64/syscalls.master @@ -1,4 +1,4 @@ - $NetBSD: syscalls.master,v 1.74 2021/09/20 00:09:02 thorpej Exp $ + $NetBSD: syscalls.master,v 1.75 2021/09/20 02:20:03 thorpej Exp $ ; NetBSD i386 COMPAT_LINUX32 system call name/number "master" file. ; (See syscalls.conf to see what it is processed into.) @@ -567,8 +567,12 @@ 330 STD { int|linux32_sys||dup3(int from, int to, int flags); } 331 STD { int|linux32_sys||pipe2(netbsd32_intp fd, int flags); } 332 UNIMPL inotify_init1 -333 UNIMPL preadv -334 UNIMPL pwritev +333 STD { int|linux32_sys||preadv(int fd, \ + const netbsd32_iovecp_t iovp, int iovcnt, \ + netbsd32_u_long off_lo, netbsd32_u_long off_hi); } +334 STD { int|linux32_sys||pwritev(int fd, \ + const netbsd32_iovecp_t iovp, int iovcnt, \ + netbsd32_u_long off_lo, netbsd32_u_long off_hi); } 335 UNIMPL rt_tgsigqueueinfo 336 UNIMPL perf_counter_open 337 UNIMPL recvmmsg |
