Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/rump regen
details: https://anonhg.NetBSD.org/src/rev/c73500d9c914
branches: trunk
changeset: 748333:c73500d9c914
user: pooka <pooka%NetBSD.org@localhost>
date: Tue Oct 20 23:29:39 2009 +0000
description:
regen
diffstat:
sys/rump/include/rump/rumpnet_if_pub.h | 5 +++--
sys/rump/librump/rumpnet/rumpnet_if_priv.h | 5 +++--
sys/rump/librump/rumpnet/rumpnet_if_wrappers.c | 17 +++++++++++++++--
3 files changed, 21 insertions(+), 6 deletions(-)
diffs (63 lines):
diff -r af984f6c1c23 -r c73500d9c914 sys/rump/include/rump/rumpnet_if_pub.h
--- a/sys/rump/include/rump/rumpnet_if_pub.h Tue Oct 20 23:28:50 2009 +0000
+++ b/sys/rump/include/rump/rumpnet_if_pub.h Tue Oct 20 23:29:39 2009 +0000
@@ -1,9 +1,10 @@
-/* $NetBSD: rumpnet_if_pub.h,v 1.3 2009/10/15 00:31:25 pooka Exp $ */
+/* $NetBSD: rumpnet_if_pub.h,v 1.4 2009/10/20 23:29:39 pooka Exp $ */
/*
* Automatically generated. DO NOT EDIT.
- * from: NetBSD: rumpnet.ifspec,v 1.1 2009/10/14 17:17:00 pooka Exp
+ * from: NetBSD: rumpnet.ifspec,v 1.2 2009/10/20 23:28:50 pooka Exp
* by: NetBSD: makerumpif.sh,v 1.4 2009/10/15 00:29:19 pooka Exp
*/
int rump_pub_virtif_create(int);
+int rump_pub_shmif_create(const char *, int *);
diff -r af984f6c1c23 -r c73500d9c914 sys/rump/librump/rumpnet/rumpnet_if_priv.h
--- a/sys/rump/librump/rumpnet/rumpnet_if_priv.h Tue Oct 20 23:28:50 2009 +0000
+++ b/sys/rump/librump/rumpnet/rumpnet_if_priv.h Tue Oct 20 23:29:39 2009 +0000
@@ -1,9 +1,10 @@
-/* $NetBSD: rumpnet_if_priv.h,v 1.3 2009/10/15 00:31:25 pooka Exp $ */
+/* $NetBSD: rumpnet_if_priv.h,v 1.4 2009/10/20 23:29:39 pooka Exp $ */
/*
* Automatically generated. DO NOT EDIT.
- * from: NetBSD: rumpnet.ifspec,v 1.1 2009/10/14 17:17:00 pooka Exp
+ * from: NetBSD: rumpnet.ifspec,v 1.2 2009/10/20 23:28:50 pooka Exp
* by: NetBSD: makerumpif.sh,v 1.4 2009/10/15 00:29:19 pooka Exp
*/
int rump_virtif_create(int);
+int rump_shmif_create(const char *, int *);
diff -r af984f6c1c23 -r c73500d9c914 sys/rump/librump/rumpnet/rumpnet_if_wrappers.c
--- a/sys/rump/librump/rumpnet/rumpnet_if_wrappers.c Tue Oct 20 23:28:50 2009 +0000
+++ b/sys/rump/librump/rumpnet/rumpnet_if_wrappers.c Tue Oct 20 23:29:39 2009 +0000
@@ -1,8 +1,8 @@
-/* $NetBSD: rumpnet_if_wrappers.c,v 1.3 2009/10/15 00:31:25 pooka Exp $ */
+/* $NetBSD: rumpnet_if_wrappers.c,v 1.4 2009/10/20 23:29:39 pooka Exp $ */
/*
* Automatically generated. DO NOT EDIT.
- * from: NetBSD: rumpnet.ifspec,v 1.1 2009/10/14 17:17:00 pooka Exp
+ * from: NetBSD: rumpnet.ifspec,v 1.2 2009/10/20 23:28:50 pooka Exp
* by: NetBSD: makerumpif.sh,v 1.4 2009/10/15 00:29:19 pooka Exp
*/
@@ -35,3 +35,16 @@
return rv;
}
__weak_alias(rump_virtif_create,rump_net_unavailable);
+
+int
+rump_pub_shmif_create(const char *arg1, int *arg2)
+{
+ int rv;
+
+ rump_schedule();
+ rv = rump_shmif_create(arg1, arg2);
+ rump_unschedule();
+
+ return rv;
+}
+__weak_alias(rump_shmif_create,rump_net_unavailable);
Home |
Main Index |
Thread Index |
Old Index