Prune unused nodes from trie

This commit is contained in:
topjohnwu
2021-10-09 02:15:03 -07:00
parent 2fef98a5af
commit 7f18616cc0
7 changed files with 54 additions and 15 deletions

View File

@@ -100,8 +100,8 @@ int __system_property_add(const char* name, unsigned int namelen, const char* va
}
__BIONIC_WEAK_FOR_NATIVE_BRIDGE
int __system_property_delete(const char* name) {
return system_properties.Delete(name);
int __system_property_delete(const char *name, bool trim_node) {
return system_properties.Delete(name, trim_node);
}
__BIONIC_WEAK_FOR_NATIVE_BRIDGE