inc: fuse: add fuse_flock definition

This commit is contained in:
Bill Zissimopoulos
2016-06-13 17:21:40 -07:00
parent 007ec8f360
commit e227ae5751
2 changed files with 11 additions and 1 deletions

View File

@ -78,7 +78,7 @@ struct fuse_operations
int (*create)(const char *path, fuse_mode_t mode, struct fuse_file_info *fi);
int (*ftruncate)(const char *path, fuse_off_t off, struct fuse_file_info *fi);
int (*fgetattr)(const char *path, struct fuse_stat *stbuf, struct fuse_file_info *fi);
int (*lock)(const char *path, struct fuse_file_info *fi, int cmd, struct flock *lock);
int (*lock)(const char *path, struct fuse_file_info *fi, int cmd, struct fuse_flock *lock);
int (*utimens)(const char *path, const struct fuse_timespec tv[2]);
int (*bmap)(const char *path, size_t blocksize, uint64_t *idx);
unsigned int flag_nullpath_ok:1;