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

Commit 957a4193 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Don't disable vendor tracing when --only_userspace"

parents b5187664 ada0a4af
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1465,11 +1465,12 @@ int main(int argc, char **argv)

    // Reset the trace buffer size to 1.
    if (traceStop) {
        cleanUpVendorTracing();
        cleanUpUserspaceTracing();
        if (!onlyUserspace)
        if (!onlyUserspace) {
            cleanUpVendorTracing();
            cleanUpKernelTracing();
        }
    }

    return g_traceAborted ? 1 : 0;
}