Source-Changes-HG archive

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

[src/trunk]: src/sys/rump/librump Eliminate weak symbols from rump kernel sys...



details:   https://anonhg.NetBSD.org/src/rev/40de14c5b55e
branches:  trunk
changeset: 328990:40de14c5b55e
user:      pooka <pooka%NetBSD.org@localhost>
date:      Sun Apr 27 15:15:13 2014 +0000

description:
Eliminate weak symbols from rump kernel syscall handlers, part 7:

Build component constructors which establish syscalls at boottime.

diffstat:

 sys/rump/librump/rumpkern/Makefile.rumpkern |  4 +++-
 sys/rump/librump/rumpnet/Makefile.rumpnet   |  4 +++-
 sys/rump/librump/rumpvfs/Makefile.rumpvfs   |  4 +++-
 3 files changed, 9 insertions(+), 3 deletions(-)

diffs (54 lines):

diff -r 56cde12905c5 -r 40de14c5b55e sys/rump/librump/rumpkern/Makefile.rumpkern
--- a/sys/rump/librump/rumpkern/Makefile.rumpkern       Sun Apr 27 15:13:57 2014 +0000
+++ b/sys/rump/librump/rumpkern/Makefile.rumpkern       Sun Apr 27 15:15:13 2014 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.rumpkern,v 1.145 2014/04/25 18:25:38 pooka Exp $
+#      $NetBSD: Makefile.rumpkern,v 1.146 2014/04/27 15:15:13 pooka Exp $
 #
 
 .include "${RUMPTOP}/Makefile.rump"
@@ -27,6 +27,8 @@
        signals.c sleepq.c threads.c vm.c hyperentropy.c        \
        accessors.c
 
+SRCS+= rumpkern_syscalls.c
+
 # autogenerated into the correct namespace
 RUMPOBJ_NORENAME= rump_syscalls.o rump_syscalls.pico rump_syscalls.po
 
diff -r 56cde12905c5 -r 40de14c5b55e sys/rump/librump/rumpnet/Makefile.rumpnet
--- a/sys/rump/librump/rumpnet/Makefile.rumpnet Sun Apr 27 15:13:57 2014 +0000
+++ b/sys/rump/librump/rumpnet/Makefile.rumpnet Sun Apr 27 15:15:13 2014 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.rumpnet,v 1.13 2013/03/15 12:09:59 pooka Exp $
+#      $NetBSD: Makefile.rumpnet,v 1.14 2014/04/27 15:15:13 pooka Exp $
 #
 
 LIB=           rumpnet
@@ -12,6 +12,8 @@
 
 SRCS+= rumpnet_if_wrappers.c
 
+SRCS+= rumpnet_syscalls.c
+
 # sys/kern networking (sockets, mbufs, etc.)
 SRCS+= sys_socket.c uipc_accf.c uipc_domain.c uipc_mbuf.c uipc_mbuf2.c \
        uipc_socket.c uipc_socket2.c uipc_syscalls.c
diff -r 56cde12905c5 -r 40de14c5b55e sys/rump/librump/rumpvfs/Makefile.rumpvfs
--- a/sys/rump/librump/rumpvfs/Makefile.rumpvfs Sun Apr 27 15:13:57 2014 +0000
+++ b/sys/rump/librump/rumpvfs/Makefile.rumpvfs Sun Apr 27 15:15:13 2014 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.rumpvfs,v 1.40 2014/02/27 13:00:06 hannken Exp $
+#      $NetBSD: Makefile.rumpvfs,v 1.41 2014/04/27 15:15:13 pooka Exp $
 #
 
 .include "${RUMPTOP}/Makefile.rump"
@@ -22,6 +22,8 @@
 
 SRCS+= rumpvfs_if_wrappers.c
 
+SRCS+= rumpvfs_syscalls.c
+
 # sys/kern I/O
 SRCS+= kern_physio.c
 



Home | Main Index | Thread Index | Old Index