summaryrefslogtreecommitdiff
path: root/src/common/dllist.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/dllist.h')
-rw-r--r--src/common/dllist.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/common/dllist.h b/src/common/dllist.h
index 970edf9..670d3b9 100644
--- a/src/common/dllist.h
+++ b/src/common/dllist.h
@@ -44,6 +44,7 @@ typedef dl_list_item *dl_list_head;
#define DL_LIST_ITEM dl_list_item dummy
#define DLL_CAST(item) ((dl_list_item *)item)
+#define DLL_HCAST(item) ((dl_list_item **)item)
#define DL_LIST_HEAD_INIT(head) \
*(head) = NULL
@@ -87,6 +88,17 @@ unsigned int count_dl_list_items(dl_list_head);
#define dl_list_add_tail(new, head) \
__dl_list_add(DLL_CAST(new), (head), (dl_list_empty(*(head)) ? DLL_CAST(new) : (*(head))->prev), (dl_list_empty(*(head)) ? DLL_CAST(new) : *(head)))
+#define dl_list_insert_before(new, target, head) \
+ do \
+ { \
+ DLL_CAST(new)->prev = DLL_CAST(target)->prev; \
+ DLL_CAST(target)->prev->next = DLL_CAST(new); \
+ DLL_CAST(new)->next = DLL_CAST(target); \
+ DLL_CAST(target)->prev = DLL_CAST(new); \
+ if (DLL_CAST(target) == *head) *head = DLL_CAST(target); \
+ \
+ } while (0)
+
#define dl_list_del(item, head) \
do \
{ \