svn commit: r255491 - head/sys/kern

John Baldwin jhb at FreeBSD.org
Thu Sep 12 18:01:13 UTC 2013


Author: jhb
Date: Thu Sep 12 18:01:13 2013
New Revision: 255491
URL: http://svnweb.freebsd.org/changeset/base/255491

Log:
  Fix the type of the idtype argument to wait6() in syscalls.master.
  
  (Accidentally missed this in the previous commit)
  
  Approved by:	re (kib)
  MFC after:	1 week

Modified:
  head/sys/kern/makesyscalls.sh

Modified: head/sys/kern/makesyscalls.sh
==============================================================================
--- head/sys/kern/makesyscalls.sh	Thu Sep 12 17:52:18 2013	(r255490)
+++ head/sys/kern/makesyscalls.sh	Thu Sep 12 18:01:13 2013	(r255491)
@@ -156,7 +156,8 @@ s/\$//g
 		printf "#include <sys/cpuset.h>\n" > sysarg
 		printf "#include <sys/_ffcounter.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


More information about the svn-src-all mailing list