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

Commit 53c964f5 authored by Daniel Colascione's avatar Daniel Colascione Committed by Gerrit Code Review
Browse files

Merge "Support * as a wildcard for ATRACE_TAG_APP"

parents 73a2508d 642ef98b
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;
        }
    }