You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the source dir is deleted, bindfs should watch for it being created again and update its cwd.
Could be implemented as follows:
Add an inotify watch on the cwd path.
Check that the dir wasn't already deleted.
Wait for IN_DELETE_SELF or IN_MOVE_SELF.
Periodically poll for the path to reappear, or make an inotify-based system, which takes volatile parent dirs into account (would probably be something like a recursive version of the present algorithm).
When the path reappears, fchdir into it.
All this either in a new thread or use the low-level FUSE API and use async I/O with watches and the FUSE fd.
The text was updated successfully, but these errors were encountered:
When the source dir is deleted, bindfs should watch for it being created again and update its cwd.
Could be implemented as follows:
IN_DELETE_SELF
orIN_MOVE_SELF
.fchdir
into it.All this either in a new thread or use the low-level FUSE API and use async I/O with watches and the FUSE fd.
The text was updated successfully, but these errors were encountered: