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?
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 amount
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) infuser
?