Merge "Support * as a wildcard for ATRACE_TAG_APP"

This commit is contained in:
Daniel Colascione 2018-02-12 22:51:33 +00:00 committed by Gerrit Code Review
commit 53c964f53b

View file

@ -70,7 +70,7 @@ static bool atrace_is_cmdline_match(const char* cmdline)
for (int i = 0; i < count; i++) {
snprintf(buf, sizeof(buf), "debug.atrace.app_%d", i);
property_get(buf, value, "");
if (strcmp(value, cmdline) == 0) {
if (strcmp(value, "*") == 0 || strcmp(value, cmdline) == 0) {
return true;
}
}