diff options
author | Anand V. Avati <avati@dev.gluster.com> | 2009-08-17 15:25:44 -0700 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2009-08-17 15:25:44 -0700 |
commit | a31b0016347b3bc9b341fa0f4541ed137224f593 (patch) | |
tree | 3e1faf06a3e14e5022048886ecfa49267c92c986 /contrib/fuse-util/mount_util.h | |
parent | 862cbb38375f0176582b06019ba406818d236828 (diff) | |
parent | 10824751f8669e7c39ebd46ab698ed0abd4e5165 (diff) |
Merge branch 'fusilli' of /data/git/users/csaba/glusterfs-fusilli
Conflicts:
xlators/mount/fuse/src/fuse-bridge.c
Diffstat (limited to 'contrib/fuse-util/mount_util.h')
-rw-r--r-- | contrib/fuse-util/mount_util.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/contrib/fuse-util/mount_util.h b/contrib/fuse-util/mount_util.h new file mode 100644 index 000000000..cf54d9d0d --- /dev/null +++ b/contrib/fuse-util/mount_util.h @@ -0,0 +1,17 @@ +/* + FUSE: Filesystem in Userspace + Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu> + + This program can be distributed under the terms of the GNU LGPLv2. + See the file COPYING.LIB. +*/ + +#include <sys/types.h> + +int fuse_mnt_add_mount(const char *progname, const char *fsname, + const char *mnt, const char *type, const char *opts); +int fuse_mnt_umount(const char *progname, const char *mnt, int lazy); +char *fuse_mnt_resolve_path(const char *progname, const char *orig); +int fuse_mnt_check_empty(const char *progname, const char *mnt, + mode_t rootmode, off_t rootsize); +int fuse_mnt_check_fuseblk(void); |