-
I have build the dokan environment. But I met the following problem. thread A:
-> call the umount: (it's not ok) I want to know: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
fuse_exit will trigger an unmount which releases the thread B from the fuse_loop and call fuse_teardown that releases the dokan attached resources. dokany/dokan_fuse/src/dokanfuse.cpp Lines 810 to 815 in 5a43c6c Thread B is never abruptly killed or terminate suddenly. It will leave the loop and follow the path described. |
Beta Was this translation helpful? Give feedback.
fuse_exit will trigger an unmount which releases the thread B from the fuse_loop and call fuse_teardown that releases the dokan attached resources.
dokany/dokan_fuse/src/dokanfuse.cpp
Lines 810 to 815 in 5a43c6c
Thread B is never abruptly killed or terminate suddenly. It will leave the loop and follow the path described.