Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c7725f85 authored by Emilio López's avatar Emilio López Committed by Steve Kondik
Browse files

Stub property_set_sync

This is needed by Motorola RILs

Change-Id: If4ede6b958cde4ee4450fef7a3106d52bfb5d5d1
parent 31e0d0c8
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -44,6 +44,12 @@ int property_get(const char *key, char *value, const char *default_value);
*/
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);    


+5 −0
Original line number Diff line number Diff line
@@ -36,6 +36,11 @@ int property_set(const char *key, const char *value)
    return __system_property_set(key, value);
}

int property_set_sync(const char *key, const char *value)
{
    return __system_property_set(key, value);
}

int property_get(const char *key, char *value, const char *default_value)
{
    int len;