Commit f306589a authored by Aaron Jacobs's avatar Aaron Jacobs

Fixed a build error.

parent 65954946
...@@ -60,6 +60,12 @@ type FileSystem interface { ...@@ -60,6 +60,12 @@ type FileSystem interface {
// (Cf. http://goo.gl/tvYyQt) // (Cf. http://goo.gl/tvYyQt)
type InodeID uint64 type InodeID uint64
// An opaque 64-bit number used to identify a particular open handle to a file
// or directory.
//
// This corresponds to fuse_file_info::fh.
type HandleID uint64
// A distinguished inode ID that identifies the root of the file system, e.g. // A distinguished inode ID that identifies the root of the file system, e.g.
// in a request to OpenDir or LookUpInode. Unlike all other inode IDs, which // in a request to OpenDir or LookUpInode. Unlike all other inode IDs, which
// are minted by the file system, the FUSE VFS layer may send a request for // are minted by the file system, the FUSE VFS layer may send a request for
......
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