blob: 136f46d8d67b69bad816b54a235dae0778fb349e [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/* system/debuggerd/utility.h
2**
3** Copyright 2008, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9** http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17
Jeff Brown13e715b2011-10-21 12:14:56 -070018#ifndef _DEBUGGERD_UTILITY_H
19#define _DEBUGGERD_UTILITY_H
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080020
21#include <stddef.h>
22#include <stdbool.h>
Jeff Brown053b8652012-06-06 16:25:03 -070023
24typedef struct {
25 /* tombstone file descriptor */
26 int tfd;
27 /* if true, does not log anything to the Android logcat */
28 bool quiet;
29} log_t;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080030
Jeff Brown13e715b2011-10-21 12:14:56 -070031/* Log information onto the tombstone. */
Jeff Brown053b8652012-06-06 16:25:03 -070032void _LOG(log_t* log, bool in_tombstone_only, const char *fmt, ...)
Jeff Brown13e715b2011-10-21 12:14:56 -070033 __attribute__ ((format(printf, 3, 4)));
Andy McFadden136dcc52011-09-22 16:37:06 -070034
Jeff Brown053b8652012-06-06 16:25:03 -070035#define LOG(fmt...) _LOG(NULL, 0, fmt)
David 'Digit' Turner2c259912011-01-26 15:11:04 +010036
37/* Set to 1 for normal debug traces */
Bruce Beare84924902010-10-13 14:21:30 -070038#if 0
Jeff Brown053b8652012-06-06 16:25:03 -070039#define XLOG(fmt...) _LOG(NULL, 0, fmt)
Bruce Beare84924902010-10-13 14:21:30 -070040#else
41#define XLOG(fmt...) do {} while(0)
42#endif
43
David 'Digit' Turner2c259912011-01-26 15:11:04 +010044/* Set to 1 for chatty debug traces. Includes all resolved dynamic symbols */
45#if 0
Jeff Brown053b8652012-06-06 16:25:03 -070046#define XLOG2(fmt...) _LOG(NULL, 0, fmt)
David 'Digit' Turner2c259912011-01-26 15:11:04 +010047#else
48#define XLOG2(fmt...) do {} while(0)
49#endif
50
Jeff Brown053b8652012-06-06 16:25:03 -070051int wait_for_signal(pid_t tid, int* total_sleep_time_usec);
52void wait_for_stop(pid_t tid, int* total_sleep_time_usec);
Jeff Brown13e715b2011-10-21 12:14:56 -070053
54#endif // _DEBUGGERD_UTILITY_H