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
|
|
|
|
2009-11-16 11:32:42 -07:00
|
|
|
#include "event.h"
|
|
|
|
|
2009-08-12 02:03:49 -06:00
|
|
|
extern int verbose;
|
2009-08-16 11:24:21 -06:00
|
|
|
extern int 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)));
|
2009-08-16 14:05:48 -06:00
|
|
|
void trace_event(event_t *event);
|
2010-03-11 16:12:44 -07:00
|
|
|
int browser__show_help(const char *format, va_list ap);
|
2009-09-24 10:02:18 -06:00
|
|
|
|
|
|
|
#endif /* __PERF_DEBUG_H */
|