Closed GoogleCodeExporter closed 9 years ago
Hmm... I never had the need to use this function and nobody asked for it so
far. A trivial implementation would
merely boil down to system("/sbin/umount mountpoint"). I could probably add it
in a future revision of the user-
space library. In the meanwhile, you could implement it trivially within your
language binding code itself, or modify
the svn code for libfuse. A MacFUSE-specific implementation in libfuse could
be something like:
void fuse_unmount_compat22(const char *mountpoint)
{
fuse_kern_unmount(mountpoint, fuse_chan_fd_np());
}
Original comment by si...@gmail.com
on 30 Oct 2007 at 6:57
Thank you. Compilation works. Now I have a problem when unmounting a volume. I
started the HelloFS from Mono.Fuse and got dyld errors when unmounting the
volume. I
attach the whole log.
Original comment by mark.jun...@gmail.com
on 1 Nov 2007 at 7:48
Attachments:
I've added the function you wanted to the source tree.
> Now I have a problem when unmounting a volume.
You should move this discussion to the macfuse-devel forum. Please don't
(ab)use this section by posting
arbitrary help requests/usage discussion here. Things people post here map to
TODO items for me, even if the
item is merely to close non-issues--an abysmal waste of time that could be used
elsewhere.
Original comment by si...@gmail.com
on 3 Nov 2007 at 3:04
Original issue reported on code.google.com by
mark.jun...@gmail.com
on 30 Oct 2007 at 6:36