File: list.h

package info (click to toggle)
latrace 0.5.11-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch, wheezy
  • size: 716 kB
  • ctags: 1,414
  • sloc: ansic: 7,548; yacc: 460; sh: 284; makefile: 275; lex: 178
file content (103 lines) | stat: -rw-r--r-- 2,970 bytes parent folder | download
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
  Copyright (c) 2003-2006 Thomas Graf <tgraf@suug.ch>

  Taken from the libnl project and customized to fit for latrace.
  Released undder following license notice.

  Copyright (C) 2008, 2009, 2010 Jiri Olsa <olsajiri@gmail.com>

  This file is part of the latrace.

  The latrace is free software: you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation, either version 3 of the License, or
  (at your option) any later version.

  The latrace is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with the latrace (file COPYING).  If not, see 
  <http://www.gnu.org/licenses/>.
*/


#ifndef LIST_H
#define LIST_H

struct lt_list_head
{
	struct lt_list_head *	next;
	struct lt_list_head *	prev;
};


static inline void __lt_list_add(struct lt_list_head *obj,
				 struct lt_list_head *prev,
				 struct lt_list_head *next)
{
	prev->next = obj;
	obj->prev = prev;
	next->prev = obj;
	obj->next = next;
}

static inline void lt_list_add_tail(struct lt_list_head *obj,
				    struct lt_list_head *head)
{
	__lt_list_add(obj, head->prev, head);
}

static inline void lt_list_add_head(struct lt_list_head *obj,
				    struct lt_list_head *head)
{
	__lt_list_add(obj, head, head->next);
}

static inline void lt_list_del(struct lt_list_head *obj)
{
	obj->next->prev = obj->prev;
	obj->prev->next = obj->next;
}

static inline int lt_list_empty(struct lt_list_head *head)
{
	return head->next == head;
}

#define lt_container_of(ptr, type, member) ({			\
        const typeof( ((type *)0)->member ) *__mptr = (ptr);	\
        (type *)( (char *)__mptr - ((size_t) &((type *)0)->member));})

#define lt_list_entry(ptr, type, member) \
	lt_container_of(ptr, type, member)

#define lt_list_at_tail(pos, head, member) \
	((pos)->member.next == (head))

#define lt_list_at_head(pos, head, member) \
	((pos)->member.prev == (head))

#define LT_LIST_HEAD(name) \
	struct lt_list_head name = { &(name), &(name) }

#define lt_list_first_entry(head, type, member)			\
	lt_list_entry((head)->next, type, member)

#define lt_list_for_each_entry(pos, head, member)				\
	for (pos = lt_list_entry((head)->next, typeof(*pos), member);	\
	     &(pos)->member != (head); 	\
	     (pos) = lt_list_entry((pos)->member.next, typeof(*(pos)), member))

#define lt_list_for_each_entry_safe(pos, n, head, member)			\
	for (pos = lt_list_entry((head)->next, typeof(*pos), member),	\
		n = lt_list_entry(pos->member.next, typeof(*pos), member);	\
	     &(pos)->member != (head); 					\
	     pos = n, n = lt_list_entry(n->member.next, typeof(*n), member))

#define lt_init_list_head(head) \
	do { (head)->next = (head); (head)->prev = (head); } while (0)

#endif