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
cb685274
Commit
cb685274
authored
Dec 27, 2020
by
Han-Wen Nienhuys
Committed by
Han-Wen Nienhuys
Dec 27, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fs: add a note about using os.File.Fd()
Change-Id: I19d52f14f63f1481b2b1aa9dcd46c91fe4e1ad99
parent
625c7706
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
fs/files.go
fs/files.go
+3
-1
No files found.
fs/files.go
View file @
cb685274
...
@@ -17,7 +17,9 @@ import (
...
@@ -17,7 +17,9 @@ import (
)
)
// NewLoopbackFile creates a FileHandle out of a file descriptor. All
// NewLoopbackFile creates a FileHandle out of a file descriptor. All
// operations are implemented.
// operations are implemented. When using the Fd from a *os.File, call
// syscall.Dup() on the fd, to avoid os.File's finalizer from closing
// the file descriptor.
func
NewLoopbackFile
(
fd
int
)
FileHandle
{
func
NewLoopbackFile
(
fd
int
)
FileHandle
{
return
&
loopbackFile
{
fd
:
fd
}
return
&
loopbackFile
{
fd
:
fd
}
}
}
...
...
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