aboutsummaryrefslogtreecommitdiff
path: root/libc/private/bionic_systrace.h
diff options
context:
space:
mode:
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();