diff options
author | David Härdeman <david@hardeman.nu> | 2007-05-21 13:59:11 +0200 |
---|---|---|
committer | David Härdeman <david@hardeman.nu> | 2007-05-21 13:59:11 +0200 |
commit | 201f1e4dfd09f41cce99182294824af0274898ae (patch) | |
tree | 86ed08271755a88f2a4b085c2b374fb449400e3d /metastore.h | |
parent | f76d5fc341700212f9abbebc6d9c4b294d375b7c (diff) |
Use hash tables instead of linked lists for a nice speedup at the cost of sorted output
Diffstat (limited to 'metastore.h')
-rw-r--r-- | metastore.h | 16 |
1 files changed, 0 insertions, 16 deletions
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; -}; - |