Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin Add rump_server which is just like rump_allserver wi...
details: https://anonhg.NetBSD.org/src/rev/b7a8b019d9ff
branches: trunk
changeset: 759586:b7a8b019d9ff
user: pooka <pooka%NetBSD.org@localhost>
date: Mon Dec 13 13:29:15 2010 +0000
description:
Add rump_server which is just like rump_allserver with the exception
that it links in only -lrump instead of everything. The startup
time difference (especially when attaching a debugger) is noticeable.
diffstat:
usr.bin/Makefile | 4 ++--
usr.bin/rump_server/Makefile | 12 ++++++++++++
2 files changed, 14 insertions(+), 2 deletions(-)
diffs (34 lines):
diff -r 031edbe510ad -r b7a8b019d9ff usr.bin/Makefile
--- a/usr.bin/Makefile Mon Dec 13 11:51:23 2010 +0000
+++ b/usr.bin/Makefile Mon Dec 13 13:29:15 2010 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.195 2010/12/12 12:48:30 pooka Exp $
+# $NetBSD: Makefile,v 1.196 2010/12/13 13:29:15 pooka Exp $
# from: @(#)Makefile 8.3 (Berkeley) 1/7/94
.include <bsd.own.mk>
@@ -22,7 +22,7 @@
pagesize passwd paste patch pathchk pkill pmap pmc pr \
printenv printf progress pwhash qsubst quota radioctl rdist \
renice rev revoke rfcomm_sppd rlogin rpcgen rpcinfo rs rsh \
- rump_allserver rump_halt rup ruptime rusers rwall rwho \
+ rump_allserver rump_halt rump_server rup ruptime rusers rwall rwho \
script sdiff sdpquery sed seq shar shlock \
showmount shuffle sockstat soelim sort spell split stat su systat \
tabs tail talk tcopy tee telnet tftp tic time tip touch tput \
diff -r 031edbe510ad -r b7a8b019d9ff usr.bin/rump_server/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/usr.bin/rump_server/Makefile Mon Dec 13 13:29:15 2010 +0000
@@ -0,0 +1,12 @@
+# $NetBSD: Makefile,v 1.1 2010/12/13 13:29:15 pooka Exp $
+#
+
+.PATH: ${.CURDIR}/../rump_allserver
+
+PROG= rump_server
+SRCS= rump_allserver.c
+NOMAN= for now
+
+LDADD+= -lrump -lrumpuser -lpthread
+
+.include <bsd.prog.mk>
Home |
Main Index |
Thread Index |
Old Index