2009-08-12 15:03:49 +07:00
|
|
|
/* For debugging general purposes */
|
2009-09-24 23:02:18 +07:00
|
|
|
#ifndef __PERF_DEBUG_H
|
|
|
|
#define __PERF_DEBUG_H
|
2009-08-12 15:03:49 +07:00
|
|
|
|
2010-04-13 15:37:33 +07:00
|
|
|
#include <stdbool.h>
|
2009-11-17 01:32:42 +07:00
|
|
|
#include "event.h"
|
2012-08-16 15:14:54 +07:00
|
|
|
#include "../ui/helpline.h"
|
2012-11-14 23:47:40 +07:00
|
|
|
#include "../ui/progress.h"
|
|
|
|
#include "../ui/util.h"
|
2009-11-17 01:32:42 +07:00
|
|
|
|
2009-08-12 15:03:49 +07:00
|
|
|
extern int verbose;
|
2010-10-27 00:20:09 +07:00
|
|
|
extern bool quiet, dump_trace;
|
2009-08-12 15:03:49 +07:00
|
|
|
|
2009-08-17 00:24:21 +07:00
|
|
|
int dump_printf(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
|
2011-01-29 23:01:45 +07:00
|
|
|
void trace_event(union perf_event *event);
|
2010-03-13 07:05:10 +07:00
|
|
|
|
2012-09-28 16:32:03 +07:00
|
|
|
int ui__error(const char *format, ...) __attribute__((format(printf, 1, 2)));
|
2011-10-26 21:04:37 +07:00
|
|
|
int ui__warning(const char *format, ...) __attribute__((format(printf, 1, 2)));
|
2010-11-27 11:41:01 +07:00
|
|
|
|
2013-12-03 20:09:25 +07:00
|
|
|
void pr_stat(const char *fmt, ...);
|
|
|
|
|
2009-09-24 23:02:18 +07:00
|
|
|
#endif /* __PERF_DEBUG_H */
|