FreeRTOS Addons
Loading...
Searching...
No Matches
slist.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 SLIST_H_
41#define SLIST_H_
42
43
53typedef struct SlNode_t_ {
54
58 struct SlNode_t_ *Next;
59
60} SlNode_t;
61
62
68#define SlInitHead(_head) \
69 (_head)->Next = NULL;
70
71
79#define SlAddNodeToHead(_head, _node) \
80 SlInsertNodeAfter(_head, _node)
81
82
90void SlAddNodeToTail( SlNode_t *Head,
91 SlNode_t *Node);
92
93
101SlNode_t *SlRemoveNodeFromHead(SlNode_t *Head);
102
103
111SlNode_t *SlRemoveNodeFromTail(SlNode_t *Head);
112
113
120#define SlIsListEmpty(_head) \
121 ((_head)->Next == NULL)
122
123
131void SlInsertNodeAfter( SlNode_t *Marker,
132 SlNode_t *Node);
133
134
143void SlInsertNodeBefore(SlNode_t *Head,
144 SlNode_t *Marker,
145 SlNode_t *Node);
146
147
155void SlRemoveNode( SlNode_t *Head,
156 SlNode_t *Node);
157
158
165#ifndef OFFSET_OF
166#define OFFSET_OF(_type, _field) \
167 ((size_t)&((_type *)0)->_field)
168#endif
169
170
179#ifndef CONTAINING_RECORD
180#define CONTAINING_RECORD(_address, _type, _field) \
181 ((_type *)((unsigned char *)(_address) - OFFSET_OF(_type, _field)))
182#endif
183
184
195#define SlForEachNode(_head, _node) \
196 for ((_node) = (_head)->Next; (_node) != NULL; (_node) = (_node)->Next)
197
198
199#endif
200
Definition: slist.h:53
struct SlNode_t_ * Next
Definition: slist.h:58