Module Name: src Committed By: pooka Date: Sun Mar 29 07:56:20 UTC 2009
Modified Files: src/sys/kern: makesyscalls.sh Log Message: Include some headers to make rump_syscalls.h self-contained. (not strictly correct wrt portability, but there are bigger fish to saltgrill in that area) To generate a diff of this commit: cvs rdiff -u -r1.84 -r1.85 src/sys/kern/makesyscalls.sh 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/makesyscalls.sh diff -u src/sys/kern/makesyscalls.sh:1.84 src/sys/kern/makesyscalls.sh:1.85 --- src/sys/kern/makesyscalls.sh:1.84 Wed Mar 18 17:27:04 2009 +++ src/sys/kern/makesyscalls.sh Sun Mar 29 07:56:19 2009 @@ -1,5 +1,5 @@ #! /bin/sh - -# $NetBSD: makesyscalls.sh,v 1.84 2009/03/18 17:27:04 pooka Exp $ +# $NetBSD: makesyscalls.sh,v 1.85 2009/03/29 07:56:19 pooka Exp $ # # Copyright (c) 1994, 1996, 2000 Christopher G. Demetriou # All rights reserved. @@ -246,6 +246,9 @@ printf "#ifdef _RUMPKERNEL\n" > rumpcallshdr printf "#error Interface not supported inside rump kernel\n" > rumpcallshdr printf "#endif /* _RUMPKERNEL */\n\n" > rumpcallshdr + printf "#include <sys/types.h>\n" > rumpcallshdr + printf "#include <sys/select.h>\n\n" > rumpcallshdr + printf "#include <signal.h>\n\n" > rumpcallshdr printf "#ifndef _" constprefix "SYSCALL_H_\n" > sysnumhdr printf "#define _" constprefix "SYSCALL_H_\n\n" > sysnumhdr