summaryrefslogtreecommitdiffstats
path: root/sys/kern
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2013-05-21 11:40:16 +0000
committerkib <kib@FreeBSD.org>2013-05-21 11:40:16 +0000
commitad28c683142ae2c850f4fa327d462db99843dbe7 (patch)
tree57b376b8c9845c4f4394f71807a46f0436bd790d /sys/kern
parente68d3a11b7e0873437e0c75a7a936aa2cf260ac9 (diff)
downloadFreeBSD-src-ad28c683142ae2c850f4fa327d462db99843dbe7.zip
FreeBSD-src-ad28c683142ae2c850f4fa327d462db99843dbe7.tar.gz
Fix the wait6(2) on 32bit architectures and for the compat32, by using
the right type for the argument in syscalls.master. Also fix the posix_fallocate(2) and posix_fadvise(2) compat32 syscalls on the architectures which require padding of the 64bit argument. Noted and reviewed by: jhb Pointy hat to: kib MFC after: 1 week
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/syscalls.master2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master
index 8668943..316f0c2 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -952,7 +952,7 @@
off_t offset, off_t len); }
531 AUE_NULL STD { int posix_fadvise(int fd, off_t offset, \
off_t len, int advice); }
-532 AUE_WAIT6 STD { int wait6(int idtype, int id, \
+532 AUE_WAIT6 STD { int wait6(int idtype, id_t id, \
int *status, int options, \
struct __wrusage *wrusage, \
siginfo_t *info); }
OpenPOWER on IntegriCloud