aboutsummaryrefslogtreecommitdiff
path: root/lib/fuse_i.h
blob: 6f363d8123a1e492f8a74bfcabfdc385368dc796 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
    FUSE: Filesystem in Userspace
    Copyright (C) 2001  Miklos Szeredi (mszeredi@inf.bme.hu)

    This program can be distributed under the terms of the GNU GPL.
    See the file COPYING.
*/

#include "fuse.h"
#include <glib.h>
#include <stdio.h>
#include <pthread.h>

#define FUSE_DEV "/proc/fs/fuse/dev"

typedef unsigned long fino_t;

struct node {
    char *name;
    fino_t parent;
    int mode;
    int rdev;
    int version;
};

struct fuse {
    int flags;
    char *mnt;
    mode_t rootmode;
    int fd;
    struct fuse_operations op;
    GHashTable *nametab;
    pthread_mutex_t lock;
};

struct fuse_dirhandle {
    struct fuse *fuse;
    fino_t dir;
    FILE *fp;
};