Module Name:    src
Committed By:   pooka
Date:           Tue May 11 20:09:47 UTC 2010

Modified Files:
        src/sys/kern: makesyscalls.sh

Log Message:
_RUMPKERNEL -> _KERNEL


To generate a diff of this commit:
cvs rdiff -u -r1.95 -r1.96 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.95 src/sys/kern/makesyscalls.sh:1.96
--- src/sys/kern/makesyscalls.sh:1.95	Tue Apr 27 10:57:46 2010
+++ src/sys/kern/makesyscalls.sh	Tue May 11 20:09:46 2010
@@ -1,5 +1,5 @@
 #! /bin/sh -
-#	$NetBSD: makesyscalls.sh,v 1.95 2010/04/27 10:57:46 pooka Exp $
+#	$NetBSD: makesyscalls.sh,v 1.96 2010/05/11 20:09:46 pooka Exp $
 #
 # Copyright (c) 1994, 1996, 2000 Christopher G. Demetriou
 # All rights reserved.
@@ -244,9 +244,9 @@
 	printf " * created from%s\n */\n\n", $0 > sysarghdr
 
 	printf " * created from%s\n */\n\n", $0 > rumpcallshdr
-	printf "#ifdef _RUMPKERNEL\n" > rumpcallshdr
-	printf "#error Interface not supported inside rump kernel\n" > rumpcallshdr
-	printf "#endif /* _RUMPKERNEL */\n\n" > rumpcallshdr
+	printf "#ifdef _KERNEL\n" > rumpcallshdr
+	printf "#error Interface not supported inside kernel\n" > rumpcallshdr
+	printf "#endif /* _KERNEL */\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

Reply via email to