Source-Changes-HG archive

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

[src/trunk]: src/sys/rump regen: rump_lwproc_rfork



details:   https://anonhg.NetBSD.org/src/rev/c8c735110a7a
branches:  trunk
changeset: 760315:c8c735110a7a
user:      pooka <pooka%NetBSD.org@localhost>
date:      Sun Jan 02 12:53:13 2011 +0000

description:
regen: rump_lwproc_rfork

diffstat:

 sys/rump/include/rump/rumpkern_if_pub.h          |  6 +++---
 sys/rump/librump/rumpkern/rumpkern_if_priv.h     |  6 +++---
 sys/rump/librump/rumpkern/rumpkern_if_wrappers.c |  8 ++++----
 3 files changed, 10 insertions(+), 10 deletions(-)

diffs (75 lines):

diff -r 35aadbfbbc55 -r c8c735110a7a sys/rump/include/rump/rumpkern_if_pub.h
--- a/sys/rump/include/rump/rumpkern_if_pub.h   Sun Jan 02 12:52:25 2011 +0000
+++ b/sys/rump/include/rump/rumpkern_if_pub.h   Sun Jan 02 12:53:13 2011 +0000
@@ -1,8 +1,8 @@
-/*     $NetBSD: rumpkern_if_pub.h,v 1.12 2010/11/21 17:35:19 pooka Exp $       */
+/*     $NetBSD: rumpkern_if_pub.h,v 1.13 2011/01/02 12:53:13 pooka Exp $       */
 
 /*
  * Automatically generated.  DO NOT EDIT.
- * from: NetBSD: rumpkern.ifspec,v 1.9 2010/11/21 17:34:11 pooka Exp 
+ * from: NetBSD: rumpkern.ifspec,v 1.10 2011/01/02 12:52:25 pooka Exp 
  * by:   NetBSD: makerumpif.sh,v 1.5 2010/09/01 19:32:11 pooka Exp 
  */
 
@@ -16,7 +16,7 @@
 size_t rump_pub_uio_free(struct uio *);
 struct kauth_cred* rump_pub_cred_create(uid_t, gid_t, size_t, gid_t *);
 void rump_pub_cred_put(struct kauth_cred *);
-int rump_pub_lwproc_newproc(void);
+int rump_pub_lwproc_rfork(int);
 int rump_pub_lwproc_newlwp(pid_t);
 void rump_pub_lwproc_switch(struct lwp *);
 void rump_pub_lwproc_releaselwp(void);
diff -r 35aadbfbbc55 -r c8c735110a7a sys/rump/librump/rumpkern/rumpkern_if_priv.h
--- a/sys/rump/librump/rumpkern/rumpkern_if_priv.h      Sun Jan 02 12:52:25 2011 +0000
+++ b/sys/rump/librump/rumpkern/rumpkern_if_priv.h      Sun Jan 02 12:53:13 2011 +0000
@@ -1,8 +1,8 @@
-/*     $NetBSD: rumpkern_if_priv.h,v 1.11 2010/11/21 17:35:20 pooka Exp $      */
+/*     $NetBSD: rumpkern_if_priv.h,v 1.12 2011/01/02 12:53:13 pooka Exp $      */
 
 /*
  * Automatically generated.  DO NOT EDIT.
- * from: NetBSD: rumpkern.ifspec,v 1.9 2010/11/21 17:34:11 pooka Exp 
+ * from: NetBSD: rumpkern.ifspec,v 1.10 2011/01/02 12:52:25 pooka Exp 
  * by:   NetBSD: makerumpif.sh,v 1.5 2010/09/01 19:32:11 pooka Exp 
  */
 
@@ -16,7 +16,7 @@
 size_t rump_uio_free(struct uio *);
 struct kauth_cred* rump_cred_create(uid_t, gid_t, size_t, gid_t *);
 void rump_cred_put(struct kauth_cred *);
-int rump_lwproc_newproc(void);
+int rump_lwproc_rfork(int);
 int rump_lwproc_newlwp(pid_t);
 void rump_lwproc_switch(struct lwp *);
 void rump_lwproc_releaselwp(void);
diff -r 35aadbfbbc55 -r c8c735110a7a sys/rump/librump/rumpkern/rumpkern_if_wrappers.c
--- a/sys/rump/librump/rumpkern/rumpkern_if_wrappers.c  Sun Jan 02 12:52:25 2011 +0000
+++ b/sys/rump/librump/rumpkern/rumpkern_if_wrappers.c  Sun Jan 02 12:53:13 2011 +0000
@@ -1,8 +1,8 @@
-/*     $NetBSD: rumpkern_if_wrappers.c,v 1.11 2010/11/21 17:35:20 pooka Exp $  */
+/*     $NetBSD: rumpkern_if_wrappers.c,v 1.12 2011/01/02 12:53:13 pooka Exp $  */
 
 /*
  * Automatically generated.  DO NOT EDIT.
- * from: NetBSD: rumpkern.ifspec,v 1.9 2010/11/21 17:34:11 pooka Exp 
+ * from: NetBSD: rumpkern.ifspec,v 1.10 2011/01/02 12:52:25 pooka Exp 
  * by:   NetBSD: makerumpif.sh,v 1.5 2010/09/01 19:32:11 pooka Exp 
  */
 
@@ -141,12 +141,12 @@
 }
 
 int
-rump_pub_lwproc_newproc(void)
+rump_pub_lwproc_rfork(int arg1)
 {
        int rv;
 
        rump_schedule();
-       rv = rump_lwproc_newproc();
+       rv = rump_lwproc_rfork(arg1);
        rump_unschedule();
 
        return rv;



Home | Main Index | Thread Index | Old Index