aboutsummaryrefslogtreecommitdiffstats
path: root/init
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2011-11-18 15:21:56 -0800
committerJeff Brown <jeffbrown@google.com>2011-11-18 15:21:56 -0800
commit33901e602484d0b5f6a07746e4660ec3e9ac62f7 (patch)
tree1761d4440bd5785bc4cc6a6a9e8ac4f023f223fa /init
parent2992f1813a13bdcfa89c2de68887aefc66496942 (diff)
downloadsystem_core-33901e602484d0b5f6a07746e4660ec3e9ac62f7.tar.gz
system_core-33901e602484d0b5f6a07746e4660ec3e9ac62f7.tar.bz2
system_core-33901e602484d0b5f6a07746e4660ec3e9ac62f7.zip
Delete dead code.
Change-Id: Icfb9bcee2c524026ecbeb7e30e943d8ca299a33a
Diffstat (limited to 'init')
-rw-r--r--init/property_service.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/init/property_service.c b/init/property_service.c
index 67334375..687de6d6 100644
--- a/init/property_service.c
+++ b/init/property_service.c
@@ -338,21 +338,6 @@ int property_set(const char *name, const char *value)
return 0;
}
-static int property_list(void (*propfn)(const char *key, const char *value, void *cookie),
- void *cookie)
-{
- char name[PROP_NAME_MAX];
- char value[PROP_VALUE_MAX];
- const prop_info *pi;
- unsigned n;
-
- for(n = 0; (pi = __system_property_find_nth(n)); n++) {
- __system_property_read(pi, name, value);
- propfn(name, value, cookie);
- }
- return 0;
-}
-
void handle_property_set_fd()
{
prop_msg msg;