Commit 0c3074f5 authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

nodefs: doc nits.

parent 224440cb
...@@ -49,3 +49,14 @@ Decisions ...@@ -49,3 +49,14 @@ Decisions
directory reads, and adding files after opening (but before directory reads, and adding files after opening (but before
reading) are handled automatically. No support for directory reading) are handled automatically. No support for directory
seeks. seeks.
To decide
=========
* A better name for DefaultOperations.
* InodeLink
* ReadonlyOperations
* BaseOperations
* implement remaining file types (exercise Mknod)
...@@ -31,7 +31,8 @@ func Mount(dir string, root DirOperations, options *Options) (*fuse.Server, erro ...@@ -31,7 +31,8 @@ func Mount(dir string, root DirOperations, options *Options) (*fuse.Server, erro
go server.Serve() go server.Serve()
if err := server.WaitMount(); err != nil { if err := server.WaitMount(); err != nil {
// XXX should shutdown the serve loop? // we don't shutdown the serve loop. If the mount does
// not succeed, the loop won't work and exit.
return nil, err return nil, err
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment