2009-08-12 16:03:49 +08:00
|
|
|
/* For debugging general purposes */
|
2009-09-25 00:02:18 +08:00
|
|
|
#ifndef __PERF_DEBUG_H
|
|
|
|
#define __PERF_DEBUG_H
|
2009-08-12 16:03:49 +08:00
|
|
|
|
2010-04-13 16:37:33 +08:00
|
|
|
#include <stdbool.h>
|
2009-11-17 02:32:42 +08:00
|
|
|
#include "event.h"
|
2012-08-16 16:14:54 +08:00
|
|
|
#include "../ui/helpline.h"
|
2012-11-15 00:47:40 +08:00
|
|
|
#include "../ui/progress.h"
|
|
|
|
#include "../ui/util.h"
|
2009-11-17 02:32:42 +08:00
|
|
|
|
2009-08-12 16:03:49 +08:00
|
|
|
extern int verbose;
|
2010-10-27 01:20:09 +08:00
|
|
|
extern bool quiet, dump_trace;
|
2009-08-12 16:03:49 +08:00
|
|
|
|
2014-07-15 05:46:48 +08:00
|
|
|
#ifndef pr_fmt
|
|
|
|
#define pr_fmt(fmt) fmt
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define pr_err(fmt, ...) \
|
|
|
|
eprintf(0, pr_fmt(fmt), ##__VA_ARGS__)
|
|
|
|
#define pr_warning(fmt, ...) \
|
|
|
|
eprintf(0, pr_fmt(fmt), ##__VA_ARGS__)
|
|
|
|
#define pr_info(fmt, ...) \
|
|
|
|
eprintf(0, pr_fmt(fmt), ##__VA_ARGS__)
|
|
|
|
#define pr_debug(fmt, ...) \
|
|
|
|
eprintf(1, pr_fmt(fmt), ##__VA_ARGS__)
|
|
|
|
#define pr_debugN(n, fmt, ...) \
|
|
|
|
eprintf(n, pr_fmt(fmt), ##__VA_ARGS__)
|
|
|
|
#define pr_debug2(fmt, ...) pr_debugN(2, pr_fmt(fmt), ##__VA_ARGS__)
|
|
|
|
#define pr_debug3(fmt, ...) pr_debugN(3, pr_fmt(fmt), ##__VA_ARGS__)
|
|
|
|
#define pr_debug4(fmt, ...) pr_debugN(4, pr_fmt(fmt), ##__VA_ARGS__)
|
|
|
|
|
2009-08-17 01:24:21 +08:00
|
|
|
int dump_printf(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
|
2011-01-30 00:01:45 +08:00
|
|
|
void trace_event(union perf_event *event);
|
2010-03-13 08:05:10 +08:00
|
|
|
|
2012-09-28 17:32:03 +08:00
|
|
|
int ui__error(const char *format, ...) __attribute__((format(printf, 1, 2)));
|
2011-10-26 22:04:37 +08:00
|
|
|
int ui__warning(const char *format, ...) __attribute__((format(printf, 1, 2)));
|
2010-11-27 12:41:01 +08:00
|
|
|
|
2013-12-03 21:09:25 +08:00
|
|
|
void pr_stat(const char *fmt, ...);
|
|
|
|
|
2014-07-15 05:46:48 +08:00
|
|
|
int eprintf(int level, const char *fmt, ...) __attribute__((format(printf, 2, 3)));
|
|
|
|
|
2009-09-25 00:02:18 +08:00
|
|
|
#endif /* __PERF_DEBUG_H */
|