dll: cygwin integration checkpoint

This commit is contained in:
Bill Zissimopoulos
2016-05-30 22:33:27 -07:00
parent a938cb4fe6
commit b7665478d9
6 changed files with 109 additions and 6 deletions

View File

@ -165,6 +165,8 @@ static inline struct fuse_context *fuse_get_context(void)
static inline int fuse_getgroups(int size, fuse_gid_t list[])
{
(void)size;
(void)list;
return 0;
}
@ -175,15 +177,18 @@ static inline int fuse_interrupted(void)
static inline int fuse_start_cleanup_thread(struct fuse *fuse)
{
(void)fuse;
return 0;
}
static inline void fuse_stop_cleanup_thread(struct fuse *fuse)
{
(void)fuse;
}
static inline int fuse_clean_cache(struct fuse *fuse)
{
(void)fuse;
return 60;
}