perf tools: Remove verbose from functions prototypes
[linux-2.6-block.git] / tools / perf / util / debug.h
CommitLineData
cd84c2ac 1/* For debugging general purposes */
8b40f521
JK
2#ifndef __PERF_DEBUG_H
3#define __PERF_DEBUG_H
cd84c2ac 4
c0555642 5#include <stdbool.h>
8f41146a 6#include "event.h"
0985a948 7#include "../ui/helpline.h"
75291420
NK
8#include "../ui/progress.h"
9#include "../ui/util.h"
8f41146a 10
cd84c2ac 11extern int verbose;
b44308f5 12extern bool quiet, dump_trace;
cd84c2ac 13
2cec19d9 14int dump_printf(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
8115d60c 15void trace_event(union perf_event *event);
567e5479 16
f9f526ec 17int ui__error(const char *format, ...) __attribute__((format(printf, 1, 2)));
4610e413 18int ui__warning(const char *format, ...) __attribute__((format(printf, 1, 2)));
068ffaa8 19
f772abc6
JO
20void pr_stat(const char *fmt, ...);
21
8b40f521 22#endif /* __PERF_DEBUG_H */