diff options
Diffstat (limited to 'init')
-rw-r--r-- | init/devices.c | 2 | ||||
-rwxr-xr-x | init/init.c | 2 | ||||
-rw-r--r-- | init/init.h | 2 | ||||
-rw-r--r-- | init/init_parser.c | 2 | ||||
-rw-r--r-- | init/list.h | 51 | ||||
-rw-r--r-- | init/parser.c | 1 | ||||
-rw-r--r-- | init/signal_handler.c | 2 | ||||
-rw-r--r-- | init/ueventd_parser.c | 1 | ||||
-rwxr-xr-x | init/util.c | 21 |
9 files changed, 5 insertions, 79 deletions
diff --git a/init/devices.c b/init/devices.c index 43d0ca3..a2f84aa 100644 --- a/init/devices.c +++ b/init/devices.c @@ -34,12 +34,12 @@ #include <asm/page.h> #include <sys/wait.h> +#include <cutils/list.h> #include <cutils/uevent.h> #include "devices.h" #include "util.h" #include "log.h" -#include "list.h" #define SYSFS_PREFIX "/sys" #define FIRMWARE_DIR1 "/etc/firmware" diff --git a/init/init.c b/init/init.c index 53b8aa5..eab14f6 100755 --- a/init/init.c +++ b/init/init.c @@ -33,6 +33,7 @@ #include <sys/un.h> #include <libgen.h> +#include <cutils/list.h> #include <cutils/sockets.h> #include <cutils/iosched_policy.h> #include <private/android_filesystem_config.h> @@ -42,7 +43,6 @@ #include "devices.h" #include "init.h" -#include "list.h" #include "log.h" #include "property_service.h" #include "bootchart.h" diff --git a/init/init.h b/init/init.h index 05cdfaa..2d98c7c 100644 --- a/init/init.h +++ b/init/init.h @@ -17,7 +17,7 @@ #ifndef _INIT_INIT_H #define _INIT_INIT_H -#include "list.h" +#include <cutils/list.h> #include <sys/stat.h> diff --git a/init/init_parser.c b/init/init_parser.c index d9d3084..fa813b9 100644 --- a/init/init_parser.c +++ b/init/init_parser.c @@ -27,11 +27,11 @@ #include "parser.h" #include "init_parser.h" #include "log.h" -#include "list.h" #include "property_service.h" #include "util.h" #include <cutils/iosched_policy.h> +#include <cutils/list.h> #define _REALLY_INCLUDE_SYS__SYSTEM_PROPERTIES_H_ #include <sys/_system_properties.h> diff --git a/init/list.h b/init/list.h deleted file mode 100644 index 7b9ef32..0000000 --- a/init/list.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright (C) 2010 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. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef _INIT_LIST_H_ -#define _INIT_LIST_H_ - -#include <stddef.h> - -struct listnode -{ - struct listnode *next; - struct listnode *prev; -}; - -#define node_to_item(node, container, member) \ - (container *) (((char*) (node)) - offsetof(container, member)) - -#define list_declare(name) \ - struct listnode name = { \ - .next = &name, \ - .prev = &name, \ - } - -#define list_for_each(node, list) \ - for (node = (list)->next; node != (list); node = node->next) - -#define list_for_each_reverse(node, list) \ - for (node = (list)->prev; node != (list); node = node->prev) - -void list_init(struct listnode *list); -void list_add_tail(struct listnode *list, struct listnode *item); -void list_remove(struct listnode *item); - -#define list_empty(list) ((list) == (list)->next) -#define list_head(list) ((list)->next) -#define list_tail(list) ((list)->prev) - -#endif diff --git a/init/parser.c b/init/parser.c index 3c2ec00..48e7aec 100644 --- a/init/parser.c +++ b/init/parser.c @@ -3,7 +3,6 @@ #include <string.h> #include "parser.h" -#include "list.h" #include "log.h" #define RAW(x...) log_write(6, x) diff --git a/init/signal_handler.c b/init/signal_handler.c index f89d058..b170132 100644 --- a/init/signal_handler.c +++ b/init/signal_handler.c @@ -24,9 +24,9 @@ #include <sys/wait.h> #include <cutils/sockets.h> #include <cutils/android_reboot.h> +#include <cutils/list.h> #include "init.h" -#include "list.h" #include "util.h" #include "log.h" diff --git a/init/ueventd_parser.c b/init/ueventd_parser.c index 0dd8b4d..3e60df5 100644 --- a/init/ueventd_parser.c +++ b/init/ueventd_parser.c @@ -22,7 +22,6 @@ #include "ueventd_parser.h" #include "parser.h" #include "log.h" -#include "list.h" #include "util.h" static void parse_line_device(struct parse_state *state, int nargs, char **args); diff --git a/init/util.c b/init/util.c index bc24b08..fd4bee2 100755 --- a/init/util.c +++ b/init/util.c @@ -34,7 +34,6 @@ #include <private/android_filesystem_config.h> #include "log.h" -#include "list.h" #include "util.h" /* @@ -156,26 +155,6 @@ oops: return 0; } -void list_init(struct listnode *node) -{ - node->next = node; - node->prev = node; -} - -void list_add_tail(struct listnode *head, struct listnode *item) -{ - item->next = head; - item->prev = head->prev; - head->prev->next = item; - head->prev = item; -} - -void list_remove(struct listnode *item) -{ - item->next->prev = item->prev; - item->prev->next = item->next; -} - #define MAX_MTD_PARTITIONS 16 static struct { |