mirror of https://github.com/trapexit/mergerfs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
481 B
21 lines
481 B
#include "fuse_statx.hpp"
|
|
|
|
int
|
|
FUSE::statx(const char *fusepath_,
|
|
const uint32_t flags_,
|
|
const uint32_t mask_,
|
|
struct fuse_statx *st_,
|
|
fuse_timeouts_t *timeout_)
|
|
{
|
|
return -ENOSYS;
|
|
}
|
|
|
|
int
|
|
FUSE::statx_fh(const uint64_t fh_,
|
|
const uint32_t flags_,
|
|
const uint32_t mask_,
|
|
struct fuse_statx *st_,
|
|
fuse_timeouts_t *timeout_)
|
|
{
|
|
return -ENOSYS;
|
|
}
|