blob: 86d2a08c52415f6722e05105e2fea0f912bf5fe8 [file] [log] [blame]
Elliott Hughes9e87f2f2014-09-17 14:59:24 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Elliott Hughes5e62b342018-10-25 11:00:00 -070017#pragma once
Elliott Hughes9e87f2f2014-09-17 14:59:24 -070018
19#include "bionic_macros.h"
20
21// Tracing class for bionic. To begin a trace at a specified point:
22// ScopedTrace("Trace message");
23// The trace will end when the contructor goes out of scope.
24
Dan Albertebb6b4a2014-08-13 11:25:01 -070025class __LIBC_HIDDEN__ ScopedTrace {
Elliott Hughes9e87f2f2014-09-17 14:59:24 -070026 public:
27 explicit ScopedTrace(const char* message);
28 ~ScopedTrace();
29
Dimitry Ivanov2a4a5e72017-03-20 10:54:52 -070030 void End();
Elliott Hughes9e87f2f2014-09-17 14:59:24 -070031 private:
Dimitry Ivanov2a4a5e72017-03-20 10:54:52 -070032 bool called_end_;
Elliott Hughes5e62b342018-10-25 11:00:00 -070033 BIONIC_DISALLOW_COPY_AND_ASSIGN(ScopedTrace);
Elliott Hughes9e87f2f2014-09-17 14:59:24 -070034};
35
Dimitry Ivanov2a4a5e72017-03-20 10:54:52 -070036void bionic_trace_begin(const char* message);
37void bionic_trace_end();