diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-10-02 19:22:08 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-10-02 19:22:08 +0200 |
commit | 05e910cec691f8333383a746876015e99ff088db (patch) | |
tree | 439f0e6d9c3a6d629aa4fd11319f3b53ca697c2b /utils.h | |
parent | aab5615166efb78d793eccd1a5d5ac7aab6324f5 (diff) |
make versioned lists more flexible by using an external comparator
Diffstat (limited to 'utils.h')
-rw-r--r-- | utils.h | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -27,9 +27,7 @@ struct vlist_tree { struct avl_tree avl; vlist_update_cb update; - - int data_offset; - int data_len; + int node_offset; int version; }; @@ -39,11 +37,10 @@ struct vlist_node { int version; }; -void __vlist_init(struct vlist_tree *tree, vlist_update_cb update, int offset, int len); +void __vlist_init(struct vlist_tree *tree, avl_tree_comp cmp, vlist_update_cb update, int offset); -#define vlist_init(tree, update, type, vlist, first, last) \ - __vlist_init(tree, update, offsetof(type, first) - offsetof(type, vlist), \ - offsetof(type, last) - offsetof(type, first) + sizeof(((type *) 0)->last)) +#define vlist_init(tree, cmp, update, type, node) \ + __vlist_init(tree, cmp, update, offsetof(type, node)) void vlist_add(struct vlist_tree *tree, struct vlist_node *node); void vlist_delete(struct vlist_tree *tree, struct vlist_node *node); |