From 74f9acbd18c55708698831b4cfb980c262ee91ee Mon Sep 17 00:00:00 2001 From: Enke Chen Date: Thu, 7 Feb 2013 14:58:50 +0100 Subject: libfuse: add poll_events to fuse_file_info Make requested poll events available to the filesystem. If the requested eventsare not available, then this field is zero. --- include/fuse_common.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include/fuse_common.h') diff --git a/include/fuse_common.h b/include/fuse_common.h index c8a2409..cb2d8cf 100644 --- a/include/fuse_common.h +++ b/include/fuse_common.h @@ -84,6 +84,11 @@ struct fuse_file_info { /** Lock owner id. Available in locking operations and flush */ uint64_t lock_owner; + + /** Requested poll events. Available in ->poll. Only set on kernels + which support it. If unsupported, this field is set to zero. + Introduced in version 3.0 */ + uint32_t poll_events; }; /** -- cgit v1.2.3