summaryrefslogtreecommitdiffstats
path: root/init/property_service.h
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2010-04-13 19:33:37 -0700
committerColin Cross <ccross@android.com>2010-04-13 22:52:10 -0700
commitd11beb2b1516144327c3f730f75e6b4bc65f1374 (patch)
tree0eb9e4c17c8d2f5ca3b2021c7f25f4b633e6d3a4 /init/property_service.h
parentca7648ddfb46347c60014a849b0150a74df4e1d2 (diff)
downloadsystem_core-d11beb2b1516144327c3f730f75e6b4bc65f1374.zip
system_core-d11beb2b1516144327c3f730f75e6b4bc65f1374.tar.gz
system_core-d11beb2b1516144327c3f730f75e6b4bc65f1374.tar.bz2
init: Move property_set_fd to property_service.c
Change-Id: Ic7a19073eae8f353d48cabee80fa9722b35a82b5
Diffstat (limited to 'init/property_service.h')
-rw-r--r--init/property_service.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/init/property_service.h b/init/property_service.h
index d12f1f3..5bfa46c 100644
--- a/init/property_service.h
+++ b/init/property_service.h
@@ -17,12 +17,12 @@
#ifndef _INIT_PROPERTY_H
#define _INIT_PROPERTY_H
-extern void handle_property_fd(int fd);
-extern void handle_property_set_fd(int fd);
+extern void handle_property_set_fd(void);
extern void property_init(void);
-extern int start_property_service(void);
+extern void start_property_service(void);
void get_property_workspace(int *fd, int *sz);
extern const char* property_get(const char *name);
extern int property_set(const char *name, const char *value);
+int get_property_set_fd(void);
#endif /* _INIT_PROPERTY_H */