Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go-fuse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go-fuse
Commits
e12761ce
Commit
e12761ce
authored
Mar 22, 2019
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nodefs: remove pending decisions from README
parent
18bf653e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
27 deletions
+0
-27
nodefs/README.md
nodefs/README.md
+0
-27
No files found.
nodefs/README.md
View file @
e12761ce
...
@@ -49,30 +49,3 @@ Decisions
...
@@ -49,30 +49,3 @@ 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
=========
*
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.)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment