xref: /openbmc/linux/tools/perf/util/debug.h (revision 600a711c)
1 /* For debugging general purposes */
2 #ifndef __PERF_DEBUG_H
3 #define __PERF_DEBUG_H
4 
5 #include <stdbool.h>
6 #include "event.h"
7 #include "../ui/helpline.h"
8 
9 extern int verbose;
10 extern bool quiet, dump_trace;
11 
12 int dump_printf(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
13 void trace_event(union perf_event *event);
14 
15 struct ui_progress;
16 struct perf_error_ops;
17 
18 #if defined(NO_NEWT_SUPPORT) && defined(NO_GTK2_SUPPORT)
19 static inline void ui_progress__update(u64 curr __maybe_unused,
20 				       u64 total __maybe_unused,
21 				       const char *title __maybe_unused) {}
22 
23 #define ui__error(format, arg...) ui__warning(format, ##arg)
24 
25 static inline int
26 perf_error__register(struct perf_error_ops *eops __maybe_unused)
27 {
28 	return 0;
29 }
30 
31 static inline int
32 perf_error__unregister(struct perf_error_ops *eops __maybe_unused)
33 {
34 	return 0;
35 }
36 
37 #else /* NO_NEWT_SUPPORT && NO_GTK2_SUPPORT */
38 
39 #include "../ui/progress.h"
40 int ui__error(const char *format, ...) __attribute__((format(printf, 1, 2)));
41 #include "../ui/util.h"
42 
43 #endif /* NO_NEWT_SUPPORT && NO_GTK2_SUPPORT */
44 
45 int ui__warning(const char *format, ...) __attribute__((format(printf, 1, 2)));
46 int ui__error_paranoid(void);
47 
48 #endif	/* __PERF_DEBUG_H */
49