diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2005-07-15 09:59:59 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2005-07-15 09:59:59 +0000 |
commit | bd10a7b16f10c1a5f61a4531c8631048e00fa230 (patch) | |
tree | 3662bd63e8b6b4946a757f73ac65c47a32b63beb /lib/fuse_lowlevel_i.h | |
parent | 163581a2d291cf8b7d93e9e58756a43c8209af1c (diff) | |
download | libfuse-bd10a7b16f10c1a5f61a4531c8631048e00fa230.tar.gz |
added lowlevel API
Diffstat (limited to 'lib/fuse_lowlevel_i.h')
-rw-r--r-- | lib/fuse_lowlevel_i.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/fuse_lowlevel_i.h b/lib/fuse_lowlevel_i.h new file mode 100644 index 0000000..eb612fc --- /dev/null +++ b/lib/fuse_lowlevel_i.h @@ -0,0 +1,26 @@ +/* + 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. +*/ + +#include "fuse_lowlevel.h" +#include <pthread.h> + +struct fuse_ll { + unsigned int debug : 1; + unsigned int allow_root : 1; + int fd; + struct fuse_ll_operations op; + volatile int exited; + int got_init; + void *userdata; + int major; + int minor; + uid_t owner; + pthread_mutex_t worker_lock; + int numworker; + int numavail; +}; |