regen: stat compat syscalls moved

This commit is contained in:
pooka 2010-07-19 15:30:43 +00:00
parent 7949f6c1c8
commit 53ef25afeb
3 changed files with 6 additions and 34 deletions

View File

@ -1,8 +1,8 @@
/* $NetBSD: rumpvfs_if_pub.h,v 1.6 2010/05/26 21:51:58 pooka Exp $ */
/* $NetBSD: rumpvfs_if_pub.h,v 1.7 2010/07/19 15:30:43 pooka Exp $ */
/*
* Automatically generated. DO NOT EDIT.
* from: NetBSD: rumpvfs.ifspec,v 1.4 2010/05/26 21:50:56 pooka Exp
* from: NetBSD: rumpvfs.ifspec,v 1.5 2010/07/19 15:29:44 pooka Exp
* by: NetBSD: makerumpif.sh,v 1.4 2009/10/15 00:29:19 pooka Exp
*/
@ -38,7 +38,5 @@ void rump_pub_vfs_mount_print(const char *, int);
void rump_pub_rcvp_set(struct vnode *, struct vnode *);
struct vnode * rump_pub_cdir_get(void);
int rump_pub_syspuffs_glueinit(int, int *);
int rump_pub_sys___stat30(const char *, struct stat *);
int rump_pub_sys___lstat30(const char *, struct stat *);
void rump_pub_vattr50_to_vattr(const struct vattr *, struct vattr *);
void rump_pub_vattr_to_vattr50(const struct vattr *, struct vattr *);

View File

@ -1,8 +1,8 @@
/* $NetBSD: rumpvfs_if_priv.h,v 1.6 2010/05/26 21:51:58 pooka Exp $ */
/* $NetBSD: rumpvfs_if_priv.h,v 1.7 2010/07/19 15:30:43 pooka Exp $ */
/*
* Automatically generated. DO NOT EDIT.
* from: NetBSD: rumpvfs.ifspec,v 1.4 2010/05/26 21:50:56 pooka Exp
* from: NetBSD: rumpvfs.ifspec,v 1.5 2010/07/19 15:29:44 pooka Exp
* by: NetBSD: makerumpif.sh,v 1.4 2009/10/15 00:29:19 pooka Exp
*/
@ -38,7 +38,5 @@ void rump_vfs_mount_print(const char *, int);
void rump_rcvp_set(struct vnode *, struct vnode *);
struct vnode * rump_cdir_get(void);
int rump_syspuffs_glueinit(int, int *);
int rump_sys___stat30(const char *, struct stat *);
int rump_sys___lstat30(const char *, struct stat *);
void rump_vattr50_to_vattr(const struct vattr *, struct vattr *);
void rump_vattr_to_vattr50(const struct vattr *, struct vattr *);

View File

@ -1,8 +1,8 @@
/* $NetBSD: rumpvfs_if_wrappers.c,v 1.6 2010/05/26 21:51:59 pooka Exp $ */
/* $NetBSD: rumpvfs_if_wrappers.c,v 1.7 2010/07/19 15:30:43 pooka Exp $ */
/*
* Automatically generated. DO NOT EDIT.
* from: NetBSD: rumpvfs.ifspec,v 1.4 2010/05/26 21:50:56 pooka Exp
* from: NetBSD: rumpvfs.ifspec,v 1.5 2010/07/19 15:29:44 pooka Exp
* by: NetBSD: makerumpif.sh,v 1.4 2009/10/15 00:29:19 pooka Exp
*/
@ -372,30 +372,6 @@ rump_pub_syspuffs_glueinit(int arg1, int *arg2)
}
__weak_alias(rump_syspuffs_glueinit,rump_vfs_unavailable);
int
rump_pub_sys___stat30(const char *arg1, struct stat *arg2)
{
int rv;
rump_schedule();
rv = rump_sys___stat30(arg1, arg2);
rump_unschedule();
return rv;
}
int
rump_pub_sys___lstat30(const char *arg1, struct stat *arg2)
{
int rv;
rump_schedule();
rv = rump_sys___lstat30(arg1, arg2);
rump_unschedule();
return rv;
}
void
rump_pub_vattr50_to_vattr(const struct vattr *arg1, struct vattr *arg2)
{