1 /* For general debugging purposes */
16 bool dump_trace
= false, quiet
= false;
18 int eprintf(int level
, const char *fmt
, ...)
23 if (verbose
>= level
) {
26 ret
= ui_helpline__show_help(fmt
, args
);
28 ret
= vfprintf(stderr
, fmt
, args
);
35 int dump_printf(const char *fmt
, ...)
42 ret
= vprintf(fmt
, args
);
49 #ifdef NO_NEWT_SUPPORT
50 void ui__warning(const char *format
, ...)
54 va_start(args
, format
);
55 vfprintf(stderr
, format
, args
);
60 void ui__warning_paranoid(void)
62 ui__warning("Permission error - are you root?\n"
63 "Consider tweaking /proc/sys/kernel/perf_event_paranoid:\n"
64 " -1 - Not paranoid at all\n"
65 " 0 - Disallow raw tracepoint access for unpriv\n"
66 " 1 - Disallow cpu events for unpriv\n"
67 " 2 - Disallow kernel profiling for unpriv\n");
70 void trace_event(union perf_event
*event
)
72 unsigned char *raw_event
= (void *)event
;
73 const char *color
= PERF_COLOR_BLUE
;
80 color_fprintf(stdout
, color
, "\n. ... raw event: size %d bytes\n",
83 for (i
= 0; i
< event
->header
.size
; i
++) {
86 color_fprintf(stdout
, color
, " %04x: ", i
);
89 color_fprintf(stdout
, color
, " %02x", raw_event
[i
]);
91 if (((i
& 15) == 15) || i
== event
->header
.size
-1) {
92 color_fprintf(stdout
, color
, " ");
93 for (j
= 0; j
< 15-(i
& 15); j
++)
94 color_fprintf(stdout
, color
, " ");
95 for (j
= i
& ~15; j
<= i
; j
++) {
96 color_fprintf(stdout
, color
, "%c",
97 isprint(raw_event
[j
]) ?
100 color_fprintf(stdout
, color
, "\n");