Add prototype for vfs_shutdown().

This commit is contained in:
mycroft 1995-04-21 21:59:41 +00:00
parent 9dbd0e8627
commit 277d7e6f32

View File

@ -1,4 +1,4 @@
/* $NetBSD: mount.h,v 1.39 1995/03/26 20:24:24 jtc Exp $ */
/* $NetBSD: mount.h,v 1.40 1995/04/21 21:59:41 mycroft Exp $ */
/*
* Copyright (c) 1989, 1991, 1993
@ -396,8 +396,9 @@ struct netcred *vfs_export_lookup /* lookup host in fs export list */
__P((struct mount *, struct netexport *, struct mbuf *));
int vfs_lock __P((struct mount *)); /* lock a vfs */
int vfs_mountedon __P((struct vnode *));/* is a vfs mounted on vp */
void vfs_shutdown __P((void)); /* unmount and sync file systems */
void vfs_unlock __P((struct mount *)); /* unlock a vfs */
void vfs_unmountall __P((void)); /* unmount all file systems */
void vfs_unmountall __P((void)); /* unmount file systems */
extern CIRCLEQ_HEAD(mntlist, mount) mountlist; /* mounted filesystem list */
extern struct vfsops *vfssw[]; /* filesystem type table */
extern int nvfssw;