forked from libav/libav
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqueue.h
More file actions
86 lines (53 loc) · 2.83 KB
/
queue.h
File metadata and controls
86 lines (53 loc) · 2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
* Copyright (C) Igor Sysoev
*/
#pragma once
typedef struct queue_s {
struct queue_s *prev;
struct queue_s *next;
} queue_t;
#define queue_init(q) \
(q)->prev = q; \
(q)->next = q
#define queue_empty(h) \
(h == (h)->prev)
#define queue_insert_head(h, x) \
(x)->next = (h)->next; \
(x)->next->prev = x; \
(x)->prev = h; \
(h)->next = x
#define queue_insert_after queue_insert_head
#define queue_insert_tail(h, x) \
(x)->prev = (h)->prev; \
(x)->prev->next = x; \
(x)->next = h; \
(h)->prev = x
#define queue_head(h) \
(h)->next
#define queue_last(h) \
(h)->prev
#define queue_sentinel(h) \
(h)
#define queue_next(q) \
(q)->next
#define queue_prev(q) \
(q)->prev
#define queue_remove(x) \
(x)->next->prev = (x)->prev; \
(x)->prev->next = (x)->next
#define queue_split(h, q, n) \
(n)->prev = (h)->prev; \
(n)->prev->next = n; \
(n)->next = q; \
(h)->prev = (q)->prev; \
(h)->prev->next = h; \
(q)->prev = n;
#define queue_add(h, n) \
(h)->prev->next = (n)->next; \
(n)->next->prev = (h)->prev; \
(h)->prev = (n)->prev; \
(h)->prev->next = h;
#define queue_data(q, type, link) \
(type *) ((unsigned char *) q - offsetof(type, link))
#define queue_foreach(q, h) \
for ((q) = queue_head(h); (q) != (h); (q) = queue_next(q))