fuse4j
fuse4j copied to clipboard
Re-factor of Fuse-J to support Mac OS X and fork into the background.
Bumps [junit](https://github.com/junit-team/junit4) from 3.8.1 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...
I would very much like to add fuse's ioctl callback to fuse4j, but am not sure how to proceed. I see that some C files are autogenerated from Java class...
Line 740, in javafs_setxattr, 3 local variables are defined twice, in different scopes. Result is that the cleanup logic will never be run, thus leaking memory. I think this has...
I mount two file systems (Filesystem3) inside a unit test. When I unmount the first file system: `Runtime.getRuntime().exec(new String[] { "bash", "-c", "umount " + mountPointOfFirstFs) });` I get a...
The root cause of the issue is that the init() and destroy() methods are called from different threads as a result the main thread is still attached and the VM...
Hello, how do you unmount programatically a mounted filesystem (like FuseMount.unmount... ) ?
Hi, I am working on a Ramdisk implementation using fuse4j. So far almost everything works quite nicely. listing xattributes in terminal via ls -l@ shows some weird behaviour. Find below...