aboutsummaryrefslogtreecommitdiffstats
path: root/include/fuse_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/fuse_common.h')
-rw-r--r--include/fuse_common.h5
1 files changed, 5 insertions, 0 deletions
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;
};
/**