Source-Changes-HG archive

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

[src/trunk]: src/sys type compat header list doesn't need to be autogenerated



details:   https://anonhg.NetBSD.org/src/rev/0eac207bbf02
branches:  trunk
changeset: 789333:0eac207bbf02
user:      pooka <pooka%NetBSD.org@localhost>
date:      Thu Aug 15 21:16:12 2013 +0000

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

diffstat:

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

diffs (42 lines):

diff -r f2fb54d68304 -r 0eac207bbf02 sys/kern/makesyscalls.sh
--- a/sys/kern/makesyscalls.sh  Thu Aug 15 21:00:56 2013 +0000
+++ b/sys/kern/makesyscalls.sh  Thu Aug 15 21:16:12 2013 +0000
@@ -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 @@
        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
diff -r f2fb54d68304 -r 0eac207bbf02 sys/rump/include/rump/rump_syscalls_compat.h
--- a/sys/rump/include/rump/rump_syscalls_compat.h      Thu Aug 15 21:00:56 2013 +0000
+++ b/sys/rump/include/rump/rump_syscalls_compat.h      Thu Aug 15 21:16:12 2013 +0000
@@ -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>



Home | Main Index | Thread Index | Old Index