summaryrefslogtreecommitdiffstats
path: root/init/property_service.h
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-04-24 21:13:44 -0700
committerElliott Hughes <enh@google.com>2015-04-24 21:13:44 -0700
commit929f4070767d1e4806c058849178afa13d9ded1e (patch)
treeac2368c66c572e1fb95406d8542605993fa68f6a /init/property_service.h
parentdf5d4482074fc68a25a6a33992f3fc5164c2d3ec (diff)
downloadsystem_core-929f4070767d1e4806c058849178afa13d9ded1e.zip
system_core-929f4070767d1e4806c058849178afa13d9ded1e.tar.gz
system_core-929f4070767d1e4806c058849178afa13d9ded1e.tar.bz2
Switch init to epoll.
Not just because it's what the cool kids are doing --- it also lets us simplify the inner loop and decouple it from whatever systems want to be woken to perform some activity if there's data to be read on some fd. Currently this is just used to clean up the existing signal handling, keychord, and property service code. Change-Id: I4d7541a2c4386957ad877df69e3be08b96a7dec5
Diffstat (limited to 'init/property_service.h')
-rw-r--r--init/property_service.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/init/property_service.h b/init/property_service.h
index 825a7dd..a27053d 100644
--- a/init/property_service.h
+++ b/init/property_service.h
@@ -20,7 +20,6 @@
#include <stddef.h>
#include <sys/system_properties.h>
-extern void handle_property_set_fd(void);
extern void property_init(void);
extern void property_load_boot_defaults(void);
extern void load_persist_props(void);
@@ -30,7 +29,6 @@ void get_property_workspace(int *fd, int *sz);
extern int __property_get(const char *name, char *value);
extern int property_set(const char *name, const char *value);
extern bool properties_initialized();
-int get_property_set_fd(void);
#ifndef __clang__
extern void __property_get_size_error()