aboutsummaryrefslogtreecommitdiffstats
path: root/lib/fuse_i.h
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2005-07-15 13:31:36 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2005-07-15 13:31:36 +0000
commite2aa2e243d729e29ad67f1b30aa3392ca9a9cdb2 (patch)
treeacab77c357b36a6703450f0802423a0ca4b3ae01 /lib/fuse_i.h
parentbd10a7b16f10c1a5f61a4531c8631048e00fa230 (diff)
downloadlibfuse-e2aa2e243d729e29ad67f1b30aa3392ca9a9cdb2.tar.gz
cleanup
Diffstat (limited to 'lib/fuse_i.h')
-rw-r--r--lib/fuse_i.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/lib/fuse_i.h b/lib/fuse_i.h
deleted file mode 100644
index de1724c..0000000
--- a/lib/fuse_i.h
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- FUSE: Filesystem in Userspace
- Copyright (C) 2001-2005 Miklos Szeredi <miklos@szeredi.hu>
-
- This program can be distributed under the terms of the GNU LGPL.
- See the file COPYING.LIB.
-*/
-
-/* For pthread_rwlock_t */
-#define _GNU_SOURCE
-
-#include "fuse.h"
-#include "fuse_lowlevel.h"
-#include <pthread.h>
-
-struct fuse {
- struct fuse_ll *fll;
- int flags;
- struct fuse_operations op;
- int compat;
- struct node **name_table;
- size_t name_table_size;
- struct node **id_table;
- size_t id_table_size;
- fuse_ino_t ctr;
- unsigned int generation;
- unsigned int hidectr;
- pthread_mutex_t lock;
- pthread_rwlock_t tree_lock;
- void *user_data;
- uid_t uid;
- gid_t gid;
- mode_t umask;
-};
-
-struct fuse *fuse_new_common(int fd, const char *opts,
- const struct fuse_operations *op,
- size_t op_size, int compat);