diff options
Diffstat (limited to 'tools/perf/util/annotate.h')
| -rw-r--r-- | tools/perf/util/annotate.h | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/perf/util/annotate.h b/tools/perf/util/annotate.h index a4dd25a61a0..c6272011625 100644 --- a/tools/perf/util/annotate.h +++ b/tools/perf/util/annotate.h @@ -5,6 +5,7 @@  #include <stdint.h>  #include "types.h"  #include "symbol.h" +#include "hist.h"  #include <linux/list.h>  #include <linux/rbtree.h>  #include <pthread.h> @@ -140,14 +141,13 @@ int symbol__tty_annotate(struct symbol *sym, struct map *map, int evidx,  #ifdef NEWT_SUPPORT  int symbol__tui_annotate(struct symbol *sym, struct map *map, int evidx, -			 void(*timer)(void *arg), void *arg, int delay_secs); +			 struct hist_browser_timer *hbt);  #else  static inline int symbol__tui_annotate(struct symbol *sym __maybe_unused,  				       struct map *map __maybe_unused,  				       int evidx __maybe_unused, -				       void(*timer)(void *arg) __maybe_unused, -				       void *arg __maybe_unused, -				       int delay_secs __maybe_unused) +				       struct hist_browser_timer *hbt +				       __maybe_unused)  {  	return 0;  }  |