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
0c3074f5
Commit
0c3074f5
authored
Mar 25, 2019
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
nodefs: doc nits.
parent
224440cb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
nodefs/README.md
nodefs/README.md
+11
-0
nodefs/mount.go
nodefs/mount.go
+2
-1
No files found.
nodefs/README.md
View file @
0c3074f5
...
...
@@ -49,3 +49,14 @@ Decisions
directory reads, and adding files after opening (but before
reading) are handled automatically. No support for directory
seeks.
To decide
=========
*
A better name for DefaultOperations.
*
InodeLink
*
ReadonlyOperations
*
BaseOperations
*
implement remaining file types (exercise Mknod)
nodefs/mount.go
View file @
0c3074f5
...
...
@@ -31,7 +31,8 @@ func Mount(dir string, root DirOperations, options *Options) (*fuse.Server, erro
go
server
.
Serve
()
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
}
...
...
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