Browse Source

fuse_readdir_cor.hpp

tests
Antonio SJ Musumeci 4 days ago
parent
commit
263a03b22c
  1. 9
      src/fuse_readdir_cor.hpp

9
src/fuse_readdir_cor.hpp

@ -33,9 +33,12 @@ namespace FUSE
unsigned max_queue_depth); unsigned max_queue_depth);
~ReadDirCOR(); ~ReadDirCOR();
int operator()(const fuse_req_ctx_t *ctx,
const fuse_file_info_t *ffi,
fuse_dirents_t *buf);
int opendir(const fuse_req_ctx_t *ctx,
const char *fusepath,
fuse_file_info_t *ffi);
int readdir(const fuse_req_ctx_t *ctx,
const fuse_file_info_t *ffi,
fuse_dirents_t *buf);
private: private:
mutable ThreadPool _tp; mutable ThreadPool _tp;

Loading…
Cancel
Save