From 201f1e4dfd09f41cce99182294824af0274898ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20H=C3=A4rdeman?= Date: Mon, 21 May 2007 13:59:11 +0200 Subject: Use hash tables instead of linked lists for a nice speedup at the cost of sorted output --- metastore.h | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'metastore.h') diff --git a/metastore.h b/metastore.h index fc8ceb1..7bc7868 100644 --- a/metastore.h +++ b/metastore.h @@ -32,19 +32,3 @@ #define ACTION_SAVE 0x02 #define ACTION_APPLY 0x04 #define ACTION_HELP 0x08 - -/* Data structure to hold all metadata for a file */ -struct metaentry { - struct metaentry *next; - char *path; - char *owner; - char *group; - mode_t mode; - time_t mtime; - long mtimensec; - unsigned int xattrs; - char **xattr_names; - ssize_t *xattr_lvalues; - char **xattr_values; -}; - -- cgit v1.2.1