diff options
| author | Emilio López <turl@tuxfamily.org> | 2011-11-16 20:59:10 +0000 |
|---|---|---|
| committer | Ricardo Cerqueira <cyanogenmod@cerqueira.org> | 2012-07-10 22:44:16 +0100 |
| commit | 1e07b11dd8bbdb1ecdefa2db07605f11737c0760 (patch) | |
| tree | 6d369da7cb94ef39a15db7e13ec139378ea5c94c /include/cutils | |
| parent | 2f0ed0d3ced82e53b1fc1f994c6bd3e97683264c (diff) | |
| download | system_core-1e07b11dd8bbdb1ecdefa2db07605f11737c0760.tar.gz system_core-1e07b11dd8bbdb1ecdefa2db07605f11737c0760.tar.bz2 system_core-1e07b11dd8bbdb1ecdefa2db07605f11737c0760.zip | |
Stub property_set_sync
This is needed by Motorola RILs
Change-Id: If4ede6b958cde4ee4450fef7a3106d52bfb5d5d1
Diffstat (limited to 'include/cutils')
| -rw-r--r-- | include/cutils/properties.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/cutils/properties.h b/include/cutils/properties.h index 25fd67ae..8589afcb 100644 --- a/include/cutils/properties.h +++ b/include/cutils/properties.h @@ -43,7 +43,13 @@ int property_get(const char *key, char *value, const char *default_value); /* property_set: returns 0 on success, < 0 on failure */ int property_set(const char *key, const char *value); - + +/* property_set_sync: returns 0 on success, < 0 on failure +** +** symbol needed for Motorola RILs. Calls property_set +*/ +int property_set_sync(const char *key, const char *value); + int property_list(void (*propfn)(const char *key, const char *value, void *cookie), void *cookie); |
