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

Commit 34499aab 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

Change-Id: I8b593eb2752483b825acfac55eba5013fd427f33
parents 67abf042 2e50045f
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;
        }
    }