summaryrefslogtreecommitdiffstats
path: root/cpukit/libdrvmgr/drvmgr_list.c
blob: dc1665f645af48c4d789ddc37d5b2a071534de29 (plain) (blame)
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
/* Driver Manager List Interface Implementation.
 *
 * COPYRIGHT (c) 2009.
 * Cobham Gaisler AB.
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.com/license/LICENSE.
 */

#include <stdlib.h>
#include <drvmgr/drvmgr_list.h>

/* LIST interface */

void drvmgr_list_init(struct drvmgr_list *list, int offset)
{
	list->head = list->tail = NULL;
	list->ofs = offset;
}

void drvmgr_list_empty(struct drvmgr_list *list)
{
	list->head = list->tail = NULL;
}

void drvmgr_list_add_head(struct drvmgr_list *list, void *entry)
{
	LIST_FIELD(list, entry) = list->head;
	if (list->head == NULL)
		list->tail = entry;
	list->head = entry;
}

void drvmgr_list_add_tail(struct drvmgr_list *list, void *entry)
{
	if (list->tail == NULL)
		list->head = entry;
	else
		LIST_FIELD(list, list->tail) = entry;
	LIST_FIELD(list, entry) = NULL;
	list->tail = entry;
}

void drvmgr_list_remove_head(struct drvmgr_list *list)
{
	list->head = LIST_FIELD(list, list->head);
	if (list->head == NULL)
		list->tail = NULL;
}

void drvmgr_list_remove(struct drvmgr_list *list, void *entry)
{
	void **prevptr = &list->head;
	void *curr, *prev;

	prev = NULL;
	curr = list->head;
	while (curr != entry) {
		prev = curr;
		prevptr = &LIST_FIELD(list, curr);
		curr = LIST_FIELD(list, curr);
	}
	*prevptr = LIST_FIELD(list, entry);
	if (list->tail == entry)
		list->tail = prev;
}