Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys _RUMPKERNEL -> _KERNEL



details:   https://anonhg.NetBSD.org/src/rev/ddba724ac608
branches:  trunk
changeset: 754756:ddba724ac608
user:      pooka <pooka%NetBSD.org@localhost>
date:      Tue May 11 20:09:11 2010 +0000

description:
_RUMPKERNEL -> _KERNEL

diffstat:

 sys/kern/makesyscalls.sh     |  8 ++++----
 sys/rump/include/rump/rump.h |  4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (41 lines):

diff -r 767b076f2d0b -r ddba724ac608 sys/kern/makesyscalls.sh
--- a/sys/kern/makesyscalls.sh  Tue May 11 20:07:40 2010 +0000
+++ b/sys/kern/makesyscalls.sh  Tue May 11 20:09:11 2010 +0000
@@ -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
diff -r 767b076f2d0b -r ddba724ac608 sys/rump/include/rump/rump.h
--- a/sys/rump/include/rump/rump.h      Tue May 11 20:07:40 2010 +0000
+++ b/sys/rump/include/rump/rump.h      Tue May 11 20:09:11 2010 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rump.h,v 1.43 2010/05/01 23:16:31 pooka Exp $  */
+/*     $NetBSD: rump.h,v 1.44 2010/05/11 20:09:11 pooka Exp $  */
 
 /*
  * Copyright (c) 2007 Antti Kantee.  All Rights Reserved.
@@ -108,7 +108,7 @@
 
 int    rump__init(int);
 
-#ifndef _RUMPKERNEL
+#ifndef _KERNEL
 #include <rump/rumpkern_if_pub.h>
 #include <rump/rumpvfs_if_pub.h>
 #include <rump/rumpnet_if_pub.h>



Home | Main Index | Thread Index | Old Index