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

Commit 314c95e8 authored by Hector Dearman's avatar Hector Dearman Committed by android-build-merger
Browse files

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

am: 957a4193

Change-Id: Ie5e1b40ce54a63bbe947ec8f5e74654fe80b3b5f
parents e286fc03 957a4193
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;
}