We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With the method int fuse_loop() a fuse filesystem can be started, such that filesystem events are handled.
fuse_loop()
It returns an error code, if it fails. But currently, this error code is not used:
jfuse/jfuse-api/src/main/java/org/cryptomator/jfuse/api/Fuse.java
Lines 120 to 124 in 75c2070
Hence, our implementation does not notice premature ends of the loops and waits indefinitely in the method waitForMountingToComplete.
waitForMountingToComplete
We must check, if fuse_loop is aready finished in the code, before we wait or return.
The text was updated successfully, but these errors were encountered:
7af37d0
infeo
No branches or pull requests
With the method int
fuse_loop()
a fuse filesystem can be started, such that filesystem events are handled.It returns an error code, if it fails. But currently, this error code is not used:
jfuse/jfuse-api/src/main/java/org/cryptomator/jfuse/api/Fuse.java
Lines 120 to 124 in 75c2070
Hence, our implementation does not notice premature ends of the loops and waits indefinitely in the method
waitForMountingToComplete
.We must check, if fuse_loop is aready finished in the code, before we wait or return.
The text was updated successfully, but these errors were encountered: