diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2021-08-12 12:03:24 -0700 |
---|---|---|
committer | Xin Li <delphij@google.com> | 2021-08-12 22:45:46 +0000 |
commit | ad19c87f806d8cc30f3dd38b2cf8b2093eb04d3a (patch) | |
tree | 93d699e33848416768e81412a3b42677c161c6d4 /libc/private/bionic_systrace.h | |
parent | 29045b3d7b8c940c84db5311958ab36530a22ed7 (diff) | |
parent | c75fbc7b8a7a04feacab54cffc1c3129e0e4d769 (diff) |
Merge ab/7633965
Bug: 169893837
Merged-In: Ic7a83fb01a39113d408ed0c95d27f694d5a2649c
Change-Id: I4494985e98790e8934f10c8ba6f6f2207b3050ab
Diffstat (limited to 'libc/private/bionic_systrace.h')
-rw-r--r-- | libc/private/bionic_systrace.h | 8 |
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(); |