mirror of
https://git.code.sf.net/p/ntfs-3g/ntfs-3g.git
synced 2024-11-23 18:14:24 +08:00
41 lines
814 B
C
41 lines
814 B
C
/*
|
|
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 "config.h"
|
|
#include "fuse_i.h"
|
|
#include "fuse_lowlevel.h"
|
|
|
|
struct fuse_chan *fuse_mount(const char *mountpoint, struct fuse_args *args)
|
|
{
|
|
struct fuse_chan *ch;
|
|
int fd;
|
|
|
|
fd = fuse_kern_mount(mountpoint, args);
|
|
if (fd == -1)
|
|
return NULL;
|
|
|
|
ch = fuse_kern_chan_new(fd);
|
|
if (!ch)
|
|
fuse_kern_unmount(mountpoint, fd);
|
|
|
|
return ch;
|
|
}
|
|
|
|
void fuse_unmount(const char *mountpoint, struct fuse_chan *ch)
|
|
{
|
|
int fd = ch ? fuse_chan_fd(ch) : -1;
|
|
fuse_kern_unmount(mountpoint, fd);
|
|
fuse_chan_destroy(ch);
|
|
}
|
|
|
|
int fuse_version(void)
|
|
{
|
|
return FUSE_VERSION;
|
|
}
|
|
|