Module Name: src Committed By: pooka Date: Sun Jan 2 12:53:13 UTC 2011
Modified Files: src/sys/rump/include/rump: rumpkern_if_pub.h src/sys/rump/librump/rumpkern: rumpkern_if_priv.h rumpkern_if_wrappers.c Log Message: regen: rump_lwproc_rfork To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/sys/rump/include/rump/rumpkern_if_pub.h cvs rdiff -u -r1.11 -r1.12 src/sys/rump/librump/rumpkern/rumpkern_if_priv.h \ src/sys/rump/librump/rumpkern/rumpkern_if_wrappers.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/rump/include/rump/rumpkern_if_pub.h diff -u src/sys/rump/include/rump/rumpkern_if_pub.h:1.12 src/sys/rump/include/rump/rumpkern_if_pub.h:1.13 --- src/sys/rump/include/rump/rumpkern_if_pub.h:1.12 Sun Nov 21 17:35:19 2010 +++ src/sys/rump/include/rump/rumpkern_if_pub.h Sun Jan 2 12:53:13 2011 @@ -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); Index: src/sys/rump/librump/rumpkern/rumpkern_if_priv.h diff -u src/sys/rump/librump/rumpkern/rumpkern_if_priv.h:1.11 src/sys/rump/librump/rumpkern/rumpkern_if_priv.h:1.12 --- src/sys/rump/librump/rumpkern/rumpkern_if_priv.h:1.11 Sun Nov 21 17:35:20 2010 +++ src/sys/rump/librump/rumpkern/rumpkern_if_priv.h Sun Jan 2 12:53:13 2011 @@ -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); Index: src/sys/rump/librump/rumpkern/rumpkern_if_wrappers.c diff -u src/sys/rump/librump/rumpkern/rumpkern_if_wrappers.c:1.11 src/sys/rump/librump/rumpkern/rumpkern_if_wrappers.c:1.12 --- src/sys/rump/librump/rumpkern/rumpkern_if_wrappers.c:1.11 Sun Nov 21 17:35:20 2010 +++ src/sys/rump/librump/rumpkern/rumpkern_if_wrappers.c Sun Jan 2 12:53:13 2011 @@ -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;