Commit e12761ce authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

nodefs: remove pending decisions from README

parent 18bf653e
......@@ -49,30 +49,3 @@ Decisions
directory reads, and adding files after opening (but before
reading) are handled automatically. No support for directory
seeks.
To decide
=========
* function signatures, or types? The latter is easier to remember?
Easier to extend? The latter less efficient (indirections/copies)
```
func Lookup(name string, out *EntryOut) (Node, Status) {
}
or
type LookupIn {
Name string
}
type LookupOut {
fuse.EntryOut
}
func Lookup(ctx context.Context, in *LookupIn, out *LookupOut)
```
* What to do with semi-unused fields (CreateIn.Umask, OpenIn.Mode, etc.)
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