Merge "Support * as a wildcard for ATRACE_TAG_APP"

am: 53c964f53b

Change-Id: Ie6721a7c126908a6c1522a578094434a09b29db3
This commit is contained in:
Daniel Colascione 2018-02-12 23:14:23 +00:00 committed by android-build-merger
commit 2e50045f60
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;
}
}