Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Nov 2013 22:31:56 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r258106 - stable/9/sys/kern
Message-ID:  <201311132231.rADMVu0J024826@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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); }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311132231.rADMVu0J024826>