From 97c61e98b4cb4115c5d1191edefdab125a9e16fd Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Wed, 7 Nov 2001 12:09:43 +0000 Subject: build with automake --- lib/fuse_i.h | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'lib/fuse_i.h') diff --git a/lib/fuse_i.h b/lib/fuse_i.h index 6f363d8..263ebe2 100644 --- a/lib/fuse_i.h +++ b/lib/fuse_i.h @@ -7,7 +7,6 @@ */ #include "fuse.h" -#include #include #include @@ -16,8 +15,11 @@ typedef unsigned long fino_t; struct node { - char *name; + struct node *name_next; + struct node *ino_next; + fino_t ino; fino_t parent; + char *name; int mode; int rdev; int version; @@ -29,7 +31,11 @@ struct fuse { mode_t rootmode; int fd; struct fuse_operations op; - GHashTable *nametab; + struct node **name_table; + size_t name_table_size; + struct node **ino_table; + size_t ino_table_size; + fino_t ctr; pthread_mutex_t lock; }; -- cgit v1.2.3