diff options
author | Mark Salyzyn <salyzyn@google.com> | 2013-11-27 12:37:56 -0800 |
---|---|---|
committer | Mark Salyzyn <salyzyn@google.com> | 2014-01-27 15:04:56 -0800 |
commit | a6aad4cdb3ec75668838f3eced59bbb2c7b70c59 (patch) | |
tree | 7061aa75a6987096e3db86fb13cea8e5dc265bca /include/cutils | |
parent | fb6d601f5ae99a59a16f87950a15b9ed3d175db7 (diff) | |
download | system_core-a6aad4cdb3ec75668838f3eced59bbb2c7b70c59.zip system_core-a6aad4cdb3ec75668838f3eced59bbb2c7b70c59.tar.gz system_core-a6aad4cdb3ec75668838f3eced59bbb2c7b70c59.tar.bz2 |
libcutils: Move list.c to inlines on list.h
(cherry picked from commit 0ea3624b3ef2a6545df770d06338c4655386220d)
Change-Id: I0572555a194d2560e74dfbf07abcec05e9a276a2
Diffstat (limited to 'include/cutils')
-rw-r--r-- | include/cutils/list.h | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/include/cutils/list.h b/include/cutils/list.h index 72395f4..945729a 100644 --- a/include/cutils/list.h +++ b/include/cutils/list.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010 The Android Open Source Project + * Copyright (C) 2008-2013 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -49,9 +49,25 @@ struct listnode node != (list); \ node = next, next = node->next) -void list_init(struct listnode *list); -void list_add_tail(struct listnode *list, struct listnode *item); -void list_remove(struct listnode *item); +static inline void list_init(struct listnode *node) +{ + node->next = node; + node->prev = node; +} + +static inline void list_add_tail(struct listnode *head, struct listnode *item) +{ + item->next = head; + item->prev = head->prev; + head->prev->next = item; + head->prev = item; +} + +static inline void list_remove(struct listnode *item) +{ + item->next->prev = item->prev; + item->prev->next = item->next; +} #define list_empty(list) ((list) == (list)->next) #define list_head(list) ((list)->next) |