Commit 2db74122 authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

fuse: hide unimplemented type FileLock.

parent 98272b62
...@@ -277,24 +277,24 @@ type GetXAttrOut struct { ...@@ -277,24 +277,24 @@ type GetXAttrOut struct {
Padding uint32 Padding uint32
} }
type FileLock struct { type _FileLock struct {
Start uint64 Start uint64
End uint64 End uint64
Typ uint32 Typ uint32
Pid uint32 Pid uint32
} }
type LkIn struct { type _LkIn struct {
InHeader InHeader
Fh uint64 Fh uint64
Owner uint64 Owner uint64
Lk FileLock Lk _FileLock
LkFlags uint32 LkFlags uint32
Padding uint32 Padding uint32
} }
type LkOut struct { type _LkOut struct {
Lk FileLock Lk _FileLock
} }
// For AccessIn.Mask. // For AccessIn.Mask.
......
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