Support * as a wildcard for ATRACE_TAG_APP

Test: strcmp
Change-Id: I33ec3ae071e3856538444663bbabb3c779ed8afa
This commit is contained in:
Daniel Colascione 2018-02-09 20:07:23 -08:00
parent cd2fa1f432
commit 642ef98b3b
1 changed files with 1 additions and 1 deletions

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;
}
}