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
|
|
|
|
2014-07-15 04:46:48 +07:00
|
|
|
#ifndef pr_fmt
|
|
|
|
#define pr_fmt(fmt) fmt
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define pr_err(fmt, ...) \
|
2014-07-15 04:46:49 +07:00
|
|
|
eprintf(0, verbose, pr_fmt(fmt), ##__VA_ARGS__)
|
2014-07-15 04:46:48 +07:00
|
|
|
#define pr_warning(fmt, ...) \
|
2014-07-15 04:46:49 +07:00
|
|
|
eprintf(0, verbose, pr_fmt(fmt), ##__VA_ARGS__)
|
2014-07-15 04:46:48 +07:00
|
|
|
#define pr_info(fmt, ...) \
|
2014-07-15 04:46:49 +07:00
|
|
|
eprintf(0, verbose, pr_fmt(fmt), ##__VA_ARGS__)
|
2014-07-15 04:46:48 +07:00
|
|
|
#define pr_debug(fmt, ...) \
|
2014-07-15 04:46:49 +07:00
|
|
|
eprintf(1, verbose, pr_fmt(fmt), ##__VA_ARGS__)
|
2014-07-15 04:46:48 +07:00
|
|
|
#define pr_debugN(n, fmt, ...) \
|
2014-07-15 04:46:49 +07:00
|
|
|
eprintf(n, verbose, pr_fmt(fmt), ##__VA_ARGS__)
|
2014-07-15 04:46:48 +07:00
|
|
|
#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 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, ...);
|
|
|
|
|
2014-07-15 04:46:49 +07:00
|
|
|
int eprintf(int level, int var, const char *fmt, ...) __attribute__((format(printf, 3, 4)));
|
2014-07-15 04:46:48 +07:00
|
|
|
|
2014-07-17 17:55:00 +07:00
|
|
|
int perf_debug_option(const char *str);
|
|
|
|
|
2009-09-24 23:02:18 +07:00
|
|
|
#endif /* __PERF_DEBUG_H */
|