FreeRTOS Addons
Loading...
Searching...
No Matches
dlist.h
1/****************************************************************************
2 *
3 * Copyright (c) 2017, Michael Becker (michael.f.becker@gmail.com)
4 *
5 * This file is part of the FreeRTOS Add-ons project.
6 *
7 * Source Code:
8 * https://github.com/michaelbecker/freertos-addons
9 *
10 * Project Page:
11 * http://michaelbecker.github.io/freertos-addons/
12 *
13 * On-line Documentation:
14 * http://michaelbecker.github.io/freertos-addons/docs/html/index.html
15 *
16 * Permission is hereby granted, free of charge, to any person obtaining a
17 * copy of this software and associated documentation files
18 * (the "Software"), to deal in the Software without restriction, including
19 * without limitation the rights to use, copy, modify, merge, publish,
20 * distribute, sublicense, and/or sell copies of the Software, and to
21 * permit persons to whom the Software is furnished to do so,subject to the
22 * following conditions:
23 *
24 * + The above copyright notice and this permission notice shall be included
25 * in all copies or substantial portions of the Software.
26 * + Credit is appreciated, but not required, if you find this project
27 * useful enough to include in your application, product, device, etc.
28 *
29 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
30 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
32 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
33 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
34 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
35 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36 *
37 ***************************************************************************/
38
39
40#ifndef DLIST_H_
41#define DLIST_H_
42
43
53typedef struct DlNode_t_ {
54
58 struct DlNode_t_ *Next;
59
63 struct DlNode_t_ *Prev;
64
65} DlNode_t;
66
67
73#define DlInitHead(_head) \
74{ \
75 (_head)->Next = (_head); \
76 (_head)->Prev = (_head); \
77}
78
79
87void DlAddNodeToHead( DlNode_t *Head,
88 DlNode_t *Node);
89
90
98void DlAddNodeToTail( DlNode_t *Head,
99 DlNode_t *Node);
100
101
109DlNode_t *DlRemoveNodeFromHead(DlNode_t *Head);
110
111
119DlNode_t *DlRemoveNodeFromTail(DlNode_t *Head);
120
121
128#define DlIsListEmpty(_head) \
129 ((_head)->Next == _head)
130
131
139void DlInsertNodeAfter( DlNode_t *Marker,
140 DlNode_t *Node);
141
142
150void DlInsertNodeBefore(DlNode_t *Marker,
151 DlNode_t *Node);
152
153
160void DlRemoveNode(DlNode_t *Node);
161
162
169#ifndef OFFSET_OF
170#define OFFSET_OF(_type, _field) \
171 ((size_t)&((_type *)0)->_field)
172#endif
173
174
183#ifndef CONTAINING_RECORD
184#define CONTAINING_RECORD(_address, _type, _field) \
185 ((_type *)((unsigned char *)(_address) - OFFSET_OF(_type, _field)))
186#endif
187
188
197#define DlForEachNode(_head, _node) \
198 for ((_node) = (_head)->Next; (_node) != (_head); (_node) = (_node)->Next)
199
208#define DlForEachNodeReverse(_head, _node) \
209 for ((_node) = (_head)->Prev; (_node) != (_head); (_node) = (_node)->Prev)
210
211#endif
212
213
Definition: dlist.h:53
struct DlNode_t_ * Prev
Definition: dlist.h:63
struct DlNode_t_ * Next
Definition: dlist.h:58