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