2009-08-12 02:03:49 -06:00
|
|
|
/* For debugging general purposes */
|
2009-09-24 10:02:18 -06:00
|
|
|
#ifndef __PERF_DEBUG_H
|
|
|
|
#define __PERF_DEBUG_H
|
2009-08-12 02:03:49 -06:00
|
|
|
|
2010-04-13 02:37:33 -06:00
|
|
|
#include <stdbool.h>
|
2009-11-16 11:32:42 -07:00
|
|
|
#include "event.h"
|
2012-08-16 02:14:54 -06:00
|
|
|
#include "../ui/helpline.h"
|
2009-11-16 11:32:42 -07:00
|
|
|
|
2009-08-12 02:03:49 -06:00
|
|
|
extern int verbose;
|
2010-10-26 11:20:09 -06:00
|
|
|
extern bool quiet, dump_trace;
|
2009-08-12 02:03:49 -06:00
|
|
|
|
2009-08-16 11:24:21 -06:00
|
|
|
int dump_printf(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
|
2011-01-29 09:01:45 -07:00
|
|
|
void trace_event(union perf_event *event);
|
2010-03-12 17:05:10 -07:00
|
|
|
|
2010-03-26 18:16:22 -06:00
|
|
|
struct ui_progress;
|
2012-05-28 22:22:58 -06:00
|
|
|
struct perf_error_ops;
|
2010-03-26 18:16:22 -06:00
|
|
|
|
2012-09-28 03:32:03 -06:00
|
|
|
#if defined(NEWT_SUPPORT) || defined(GTK2_SUPPORT)
|
|
|
|
|
|
|
|
#include "../ui/progress.h"
|
|
|
|
int ui__error(const char *format, ...) __attribute__((format(printf, 1, 2)));
|
|
|
|
#include "../ui/util.h"
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2012-09-10 16:15:03 -06:00
|
|
|
static inline void ui_progress__update(u64 curr __maybe_unused,
|
|
|
|
u64 total __maybe_unused,
|
|
|
|
const char *title __maybe_unused) {}
|
2011-10-26 04:02:55 -06:00
|
|
|
|
|
|
|
#define ui__error(format, arg...) ui__warning(format, ##arg)
|
2012-05-28 22:22:58 -06:00
|
|
|
|
|
|
|
static inline int
|
2012-09-10 16:15:03 -06:00
|
|
|
perf_error__register(struct perf_error_ops *eops __maybe_unused)
|
2012-05-28 22:22:58 -06:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
2012-09-10 16:15:03 -06:00
|
|
|
perf_error__unregister(struct perf_error_ops *eops __maybe_unused)
|
2012-05-28 22:22:58 -06:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-09-28 03:32:03 -06:00
|
|
|
#endif /* NEWT_SUPPORT || GTK2_SUPPORT */
|
2009-09-24 10:02:18 -06:00
|
|
|
|
2011-10-26 08:04:37 -06:00
|
|
|
int ui__warning(const char *format, ...) __attribute__((format(printf, 1, 2)));
|
|
|
|
int ui__error_paranoid(void);
|
2010-11-26 21:41:01 -07:00
|
|
|
|
2009-09-24 10:02:18 -06:00
|
|
|
#endif /* __PERF_DEBUG_H */
|