fuser
fuser copied to clipboard
Why does `mount2()` not return in `fuser` but in `libfuse`
As said in the docs: This function will not return until the filesystem is unmounted. (~see docs)
The reference implementation libfuse does in fact return after a mount so I would say this is some kind of unexpected behavior for this rust-implementation.
Is there a specific reason why mount2() is implemented to not return (unless unmounted) in fuser?
The behavior you're looking for is provided by spawn_mount2()