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
22567ce3
Commit
22567ce3
authored
Sep 18, 2023
by
Han-Wen Nienhuys
Committed by
Han-Wen Nienhuys
Sep 18, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fuse: document 0x8000 open flag
Change-Id: Id9812b765e6bdf06f92c2723d03112dca99faa36
parent
65f5a7a5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
fuse/print.go
fuse/print.go
+11
-11
No files found.
fuse/print.go
View file @
22567ce3
...
...
@@ -62,17 +62,17 @@ var (
RELEASE_FLUSH
:
"FLUSH"
,
})
openFlagNames
=
newFlagNames
(
map
[
int64
]
string
{
int64
(
os
.
O_WRONLY
)
:
"WRONLY"
,
int64
(
os
.
O_RDWR
)
:
"RDWR"
,
int64
(
os
.
O_APPEND
)
:
"APPEND"
,
int64
(
syscall
.
O_ASYNC
)
:
"ASYNC"
,
int64
(
os
.
O_CREATE
)
:
"CREAT"
,
int64
(
os
.
O_EXCL
)
:
"EXCL"
,
int64
(
syscall
.
O_NOCTTY
)
:
"NOCTTY"
,
int64
(
syscall
.
O_NONBLOCK
)
:
"NONBLOCK"
,
int64
(
os
.
O_SYNC
)
:
"SYNC"
,
int64
(
os
.
O_TRUNC
)
:
"TRUNC"
,
int64
(
os
.
O_WRONLY
)
:
"WRONLY"
,
int64
(
os
.
O_RDWR
)
:
"RDWR"
,
int64
(
os
.
O_APPEND
)
:
"APPEND"
,
int64
(
syscall
.
O_ASYNC
)
:
"ASYNC"
,
int64
(
os
.
O_CREATE
)
:
"CREAT"
,
int64
(
os
.
O_EXCL
)
:
"EXCL"
,
int64
(
syscall
.
O_NOCTTY
)
:
"NOCTTY"
,
int64
(
syscall
.
O_NONBLOCK
)
:
"NONBLOCK"
,
int64
(
os
.
O_SYNC
)
:
"SYNC"
,
int64
(
os
.
O_TRUNC
)
:
"TRUNC"
,
0x8000
:
"LARGEFILE"
,
int64
(
syscall
.
O_CLOEXEC
)
:
"CLOEXEC"
,
int64
(
syscall
.
O_DIRECTORY
)
:
"DIRECTORY"
,
})
...
...
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