summaryrefslogtreecommitdiff
path: root/libc/private/bionic_systrace.h
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2021-08-26 02:17:34 -0700
committerLinux Build Service Account <lnxbuild@localhost>2021-08-26 02:17:34 -0700
commit800092dfdc59acdf5a7594e0576e26d4e4d9dcac (patch)
treef71f01e736d9b70e5856fd9bbdf0bf8bcda959a6 /libc/private/bionic_systrace.h
parent555d228b48c09d9372395a9f66f4788e65782d6d (diff)
parent50ea1df5ef98170dec5ac2834b6587fae1d11e67 (diff)
Merge 50ea1df5ef98170dec5ac2834b6587fae1d11e67 on remote branch
Change-Id: Ib8d2e57184758c537de47c68b5e8233cc6a34b5b
Diffstat (limited to 'libc/private/bionic_systrace.h')
-rw-r--r--libc/private/bionic_systrace.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/libc/private/bionic_systrace.h b/libc/private/bionic_systrace.h
index 6b11812bd..dbe173919 100644
--- a/libc/private/bionic_systrace.h
+++ b/libc/private/bionic_systrace.h
@@ -16,12 +16,8 @@
#pragma once
-#include <cutils/trace.h> // For ATRACE_TAG_BIONIC.
-
#include "platform/bionic/macros.h"
-static constexpr char kTraceTagsProp[] = "debug.atrace.tags.enableflags";
-
// Tracing class for bionic. To begin a trace at a specified point:
// ScopedTrace("Trace message");
// The trace will end when the contructor goes out of scope.
@@ -37,9 +33,5 @@ class __LIBC_HIDDEN__ ScopedTrace {
BIONIC_DISALLOW_COPY_AND_ASSIGN(ScopedTrace);
};
-int get_trace_marker_fd();
-bool should_trace(const uint64_t enable_tags = ATRACE_TAG_BIONIC);
-void output_trace(const char* message, const char event = 'B');
-
void bionic_trace_begin(const char* message);
void bionic_trace_end();