From f306589a4e5abc537ecc62e3b814f414c0fd035e Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Fri, 27 Feb 2015 09:50:00 +1100 Subject: [PATCH] Fixed a build error. --- file_system.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/file_system.go b/file_system.go index ded5a82..91c8f77 100644 --- a/file_system.go +++ b/file_system.go @@ -60,6 +60,12 @@ type FileSystem interface { // (Cf. http://goo.gl/tvYyQt) 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. // 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