summaryrefslogtreecommitdiff
path: root/sys/miscfs/umapfs/umap.h
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1996-02-26 07:20:13 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1996-02-26 07:20:13 +0000
commit77f5588c9bac2f2c38716c116568739dd3796884 (patch)
tree34a909aa7033fef1cc01a5d8e75838b3e9a44016 /sys/miscfs/umapfs/umap.h
parentc0824195c72618b0acf483c157c9ec1626dac65e (diff)
Bug fixes (such as missing arguments).
Still seemed to have at least one bug. Strange panic happened when unmounting from NFS tree.
Diffstat (limited to 'sys/miscfs/umapfs/umap.h')
-rw-r--r--sys/miscfs/umapfs/umap.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/miscfs/umapfs/umap.h b/sys/miscfs/umapfs/umap.h
index 52408df2254..8ce54854379 100644
--- a/sys/miscfs/umapfs/umap.h
+++ b/sys/miscfs/umapfs/umap.h
@@ -1,4 +1,4 @@
-/* $NetBSD: umap.h,v 1.5 1995/04/15 01:57:35 cgd Exp $ */
+/* $OpenBSD: umap.h,v 1.2 1996/02/26 07:20:03 mickey Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -87,6 +87,9 @@ extern struct vnode *umap_checkvp __P((struct vnode *vp, char *fil, int lno));
#define UMAPVPTOLOWERVP(vp) (VTOUMAP(vp)->umap_lowervp)
#endif
-extern int (**umap_vnodeop_p)();
+extern int (**umap_vnodeop_p) __P((void *));
extern struct vfsops umap_vfsops;
+
+int umapfs_init __P((void));
+
#endif /* _KERNEL */