Module Name: src Committed By: pooka Date: Fri Aug 3 12:41:13 UTC 2012
Modified Files: src/sys/kern: syscalls.conf Log Message: Forgot this one from previous commit. It too is needed for syscallargs.h on rumpclient on !NetBSD. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 src/sys/kern/syscalls.conf Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/kern/syscalls.conf diff -u src/sys/kern/syscalls.conf:1.18 src/sys/kern/syscalls.conf:1.19 --- src/sys/kern/syscalls.conf:1.18 Sun Feb 19 17:00:57 2012 +++ src/sys/kern/syscalls.conf Fri Aug 3 12:41:13 2012 @@ -1,10 +1,10 @@ -# $NetBSD: syscalls.conf,v 1.18 2012/02/19 17:00:57 matt Exp $ +# $NetBSD: syscalls.conf,v 1.19 2012/08/03 12:41:13 pooka Exp $ sysnames="syscalls.c" sysnumhdr="../sys/syscall.h" syssw="init_sysent.c" sysarghdr="../sys/syscallargs.h" -sysarghdrextra='#include <sys/mount.h>\n#include <sys/sched.h>\n#include <sys/socket.h>\n\n' +sysarghdrextra='#include <sys/mount.h>\n#ifndef RUMP_CLIENT\n#include <sys/sched.h>\n#endif\n#include <sys/socket.h>\n\n' sysalign=1 rumpcalls="../rump/librump/rumpkern/rump_syscalls.c" rumpcallshdr="../rump/include/rump/rump_syscalls.h"