svn commit: r258106 - stable/9/sys/kern
John Baldwin
jhb at FreeBSD.org
Wed Nov 13 22:31:57 UTC 2013
Author: jhb
Date: Wed Nov 13 22:31:56 2013
New Revision: 258106
URL: http://svnweb.freebsd.org/changeset/base/258106
Log:
MFC 255490,255491:
Fix the type of the idtype argument to wait6() in syscalls.master.
Modified:
stable/9/sys/kern/makesyscalls.sh
stable/9/sys/kern/syscalls.master
Directory Properties:
stable/9/sys/ (props changed)
Modified: stable/9/sys/kern/makesyscalls.sh
==============================================================================
--- stable/9/sys/kern/makesyscalls.sh Wed Nov 13 20:35:10 2013 (r258105)
+++ stable/9/sys/kern/makesyscalls.sh Wed Nov 13 22:31:56 2013 (r258106)
@@ -153,7 +153,8 @@ s/\$//g
printf "#include <sys/acl.h>\n" > sysarg
printf "#include <sys/cpuset.h>\n" > sysarg
printf "#include <sys/_semaphore.h>\n" > sysarg
- printf "#include <sys/ucontext.h>\n\n" > sysarg
+ printf "#include <sys/ucontext.h>\n" > sysarg
+ printf "#include <sys/wait.h>\n\n" > sysarg
printf "#include <bsm/audit_kevents.h>\n\n" > sysarg
printf "struct proc;\n\n" > sysarg
printf "struct thread;\n\n" > sysarg
Modified: stable/9/sys/kern/syscalls.master
==============================================================================
--- stable/9/sys/kern/syscalls.master Wed Nov 13 20:35:10 2013 (r258105)
+++ stable/9/sys/kern/syscalls.master Wed Nov 13 22:31:56 2013 (r258106)
@@ -949,7 +949,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, id_t id, \
+532 AUE_WAIT6 STD { int wait6(idtype_t idtype, id_t id, \
int *status, int options, \
struct __wrusage *wrusage, \
siginfo_t *info); }
More information about the svn-src-stable-9
mailing list