Module Name:    src
Committed By:   pooka
Date:           Thu Aug 15 21:16:13 UTC 2013

Modified Files:
        src/sys/kern: makesyscalls.sh
        src/sys/rump/include/rump: rump_syscalls_compat.h

Log Message:
type compat header list doesn't need to be autogenerated


To generate a diff of this commit:
cvs rdiff -u -r1.128 -r1.129 src/sys/kern/makesyscalls.sh
cvs rdiff -u -r1.10 -r1.11 src/sys/rump/include/rump/rump_syscalls_compat.h

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.128 src/sys/kern/makesyscalls.sh:1.129
--- src/sys/kern/makesyscalls.sh:1.128	Thu Mar  7 19:17:46 2013
+++ src/sys/kern/makesyscalls.sh	Thu Aug 15 21:16:13 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: makesyscalls.sh,v 1.128 2013/03/07 19:17:46 pooka Exp $
+#	$NetBSD: makesyscalls.sh,v 1.129 2013/08/15 21:16:13 pooka Exp $
 #
 # Copyright (c) 1994, 1996, 2000 Christopher G. Demetriou
 # All rights reserved.
@@ -300,10 +300,6 @@ NR == 1 {
 	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> /* typedefs */\n" > rumpcallshdr
-	printf "#include <sys/select.h> /* typedefs */\n" > rumpcallshdr
-	printf "#include <sys/socket.h> /* typedefs */\n\n" > rumpcallshdr
-	printf "#include <signal.h> /* typedefs */\n\n" > rumpcallshdr
 	printf "#include <rump/rump_syscalls_compat.h>\n\n" > rumpcallshdr
 
 	printf "%s", sysarghdrextra > sysarghdr

Index: src/sys/rump/include/rump/rump_syscalls_compat.h
diff -u src/sys/rump/include/rump/rump_syscalls_compat.h:1.10 src/sys/rump/include/rump/rump_syscalls_compat.h:1.11
--- src/sys/rump/include/rump/rump_syscalls_compat.h:1.10	Thu Jan 17 23:21:20 2013
+++ src/sys/rump/include/rump/rump_syscalls_compat.h	Thu Aug 15 21:16:12 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: rump_syscalls_compat.h,v 1.10 2013/01/17 23:21:20 pooka Exp $	*/
+/*	$NetBSD: rump_syscalls_compat.h,v 1.11 2013/08/15 21:16:12 pooka Exp $	*/
 
 /*-
  * Copyright (c) 2010, 2011 Antti Kantee.  All Rights Reserved.
@@ -28,6 +28,12 @@
 #ifndef _RUMP_RUMP_SYSCALLS_COMPAT_H_
 #define _RUMP_RUMP_SYSCALLS_COMPAT_H_
 
+#include <sys/types.h> /* typedefs */
+#include <sys/select.h> /* typedefs */
+#include <sys/socket.h> /* typedefs */
+
+#include <signal.h> /* typedefs */
+
 #ifdef __NetBSD__
 #include <sys/cdefs.h>
 #include <sys/param.h>

Reply via email to