2009-08-12 08:03:49 +00:00
|
|
|
/* For debugging general purposes */
|
2009-09-24 16:02:18 +00:00
|
|
|
#ifndef __PERF_DEBUG_H
|
|
|
|
#define __PERF_DEBUG_H
|
2009-08-12 08:03:49 +00:00
|
|
|
|
2009-11-16 18:32:42 +00:00
|
|
|
#include "event.h"
|
|
|
|
|
2009-08-12 08:03:49 +00:00
|
|
|
extern int verbose;
|
2009-08-16 17:24:21 +00:00
|
|
|
extern int dump_trace;
|
2009-08-12 08:03:49 +00:00
|
|
|
|
2009-08-16 17:24:21 +00:00
|
|
|
int dump_printf(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
|
2009-08-16 20:05:48 +00:00
|
|
|
void trace_event(event_t *event);
|
2010-03-13 00:05:10 +00:00
|
|
|
|
2010-03-27 00:16:22 +00:00
|
|
|
struct ui_progress;
|
|
|
|
|
2010-03-13 00:05:10 +00:00
|
|
|
#ifdef NO_NEWT_SUPPORT
|
|
|
|
static inline int browser__show_help(const char *format __used, va_list ap __used)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2010-03-27 00:16:22 +00:00
|
|
|
|
|
|
|
static inline struct ui_progress *ui_progress__new(const char *title __used,
|
|
|
|
u64 total __used)
|
|
|
|
{
|
|
|
|
return (struct ui_progress *)1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ui_progress__update(struct ui_progress *self __used,
|
|
|
|
u64 curr __used) {}
|
|
|
|
|
|
|
|
static inline void ui_progress__delete(struct ui_progress *self __used) {}
|
2010-03-13 00:05:10 +00:00
|
|
|
#else
|
2010-03-11 23:12:44 +00:00
|
|
|
int browser__show_help(const char *format, va_list ap);
|
2010-03-27 00:16:22 +00:00
|
|
|
struct ui_progress *ui_progress__new(const char *title, u64 total);
|
|
|
|
void ui_progress__update(struct ui_progress *self, u64 curr);
|
|
|
|
void ui_progress__delete(struct ui_progress *self);
|
2010-03-13 00:05:10 +00:00
|
|
|
#endif
|
2009-09-24 16:02:18 +00:00
|
|
|
|
|
|
|
#endif /* __PERF_DEBUG_H */
|