diff options
| author | njoly <njoly@NetBSD.org> | 2014-05-04 10:08:53 +0000 |
|---|---|---|
| committer | njoly <njoly@NetBSD.org> | 2014-05-04 10:08:53 +0000 |
| commit | 9eac3488d5d9966e45f0b09c6bc25b72932afde6 (patch) | |
| tree | 57b8e8441246d8bfc915fe76a6212f85c8b0095a /sys/compat/linux/arch/arm | |
| parent | d1b8e36c91c9a2adbd0e01d41268bc86693427c6 (diff) | |
Fix pread/pwrite syscalls which need a 64bit offset argument.
Diffstat (limited to 'sys/compat/linux/arch/arm')
| -rw-r--r-- | sys/compat/linux/arch/arm/syscalls.master | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/compat/linux/arch/arm/syscalls.master b/sys/compat/linux/arch/arm/syscalls.master index d71cd6a9ef0..70c4c4fb729 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.55 2014/04/08 16:48:01 njoly Exp $ + $NetBSD: syscalls.master,v 1.56 2014/05/04 10:08:53 njoly Exp $ ; Derived from sys/compat/linux/arch/*/syscalls.master ; and from Linux 2.4.12 arch/arm/kernel/calls.S @@ -316,9 +316,9 @@ 179 STD { int|linux_sys||rt_sigsuspend(linux_sigset_t *unewset, \ size_t sigsetsize); } 180 STD { int|linux_sys||pread(int fd, char *buf, \ - size_t nbyte, linux_off_t offset); } + size_t nbyte, off_t offset); } 181 STD { int|linux_sys||pwrite(int fd, char *buf, \ - size_t nbyte, linux_off_t offset); } + size_t nbyte, off_t offset); } 182 STD { int|linux_sys||chown16(const char *path, \ linux_uid16_t uid, linux_gid16_t gid); } 183 NOARGS { int|sys||__getcwd(char *bufp, size_t length); } |
