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

Commit d49fb123 authored by Daniel Colascione's avatar Daniel Colascione Committed by android-build-merger
Browse files

Merge "Support * as a wildcard for ATRACE_TAG_APP" am: 53c964f5 am: 2e50045f

am: 34499aab

Change-Id: Ie8e78dc2f85c513ba4ba8b4a355a7d4de1e1055d
parents 17d87bf1 34499aab
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
        }
    }