Date: Thu, 12 Sep 2013 18:01:13 +0000 (UTC) From: John Baldwin <jhb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r255491 - head/sys/kern Message-ID: <201309121801.r8CI1Dng003722@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309121801.r8CI1Dng003722>