diff options
author | jeff <jeff@FreeBSD.org> | 2003-04-01 00:35:12 +0000 |
---|---|---|
committer | jeff <jeff@FreeBSD.org> | 2003-04-01 00:35:12 +0000 |
commit | 919a0c8fa4f9d76b60607363f2efe4f3a816d387 (patch) | |
tree | 88a72432c6a4eb4fa059302e9ac4870fcbe6468c /sys/kern | |
parent | 814bb999331ad4aa98d692edfa2d773c80304d15 (diff) | |
download | FreeBSD-src-919a0c8fa4f9d76b60607363f2efe4f3a816d387.zip FreeBSD-src-919a0c8fa4f9d76b60607363f2efe4f3a816d387.tar.gz |
- We now have to include umtx.h and ucontext.h in the system call related
headers.
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/makesyscalls.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/kern/makesyscalls.sh b/sys/kern/makesyscalls.sh index cfa8c77..5a0a48a 100644 --- a/sys/kern/makesyscalls.sh +++ b/sys/kern/makesyscalls.sh @@ -117,7 +117,9 @@ s/\$//g printf "#define\t%s\n\n", sysproto_h > sysarg printf "#include <sys/signal.h>\n" > sysarg printf "#include <sys/acl.h>\n" > sysarg + printf "#include <sys/thr.h>\n" > sysarg printf "#include <posix4/_semaphore.h>\n\n" > sysarg + printf "#include <sys/ucontext.h>\n\n" > sysarg printf "struct proc;\n\n" > sysarg printf "struct thread;\n\n" > sysarg printf "#define\tPAD_(t)\t(sizeof(register_t) <= sizeof(t) ? \\\n" > sysarg |