From b5958d7864822ec3151edda616952d1d401b139a Mon Sep 17 00:00:00 2001 From: Geoff Levand Date: Mon, 26 Mar 2012 20:21:21 -0700 Subject: Add new macro DEFINE_LIST() Signed-off-by: Geoff Levand --- lib/list/list.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/list/list.h') diff --git a/lib/list/list.h b/lib/list/list.h index 7f9955f..cd9cd10 100644 --- a/lib/list/list.h +++ b/lib/list/list.h @@ -41,13 +41,15 @@ struct list { for (; _pos; _pos = list_next_entry(_list, _pos, _member)) -#define STATIC_LIST(_list) static struct list _list = { \ +#define DEFINE_LIST(_list) struct list _list = { \ .head = { \ .next = &_list.head, \ .prev = &_list.head \ } \ } +#define STATIC_LIST(_list) static DEFINE_LIST(_list) + void list_init(struct list *list); void list_insert_before(struct list_item *next, struct list_item *item); void list_insert_after(struct list_item *prev, struct list_item *item); -- cgit v1.2.1