hist.h (89fe808ae777728da6e1d78b7d13562792310d17) | hist.h (fc67297b16da335d610af2fac96233d51146300a) |
---|---|
1#ifndef __PERF_HIST_H 2#define __PERF_HIST_H 3 4#include <linux/types.h> 5#include <pthread.h> 6#include "callchain.h" 7#include "header.h" 8 --- 214 unchanged lines hidden (view full) --- 223 return 0; 224} 225 226#define K_LEFT -1000 227#define K_RIGHT -2000 228#define K_SWITCH_INPUT_DATA -3000 229#endif 230 | 1#ifndef __PERF_HIST_H 2#define __PERF_HIST_H 3 4#include <linux/types.h> 5#include <pthread.h> 6#include "callchain.h" 7#include "header.h" 8 --- 214 unchanged lines hidden (view full) --- 223 return 0; 224} 225 226#define K_LEFT -1000 227#define K_RIGHT -2000 228#define K_SWITCH_INPUT_DATA -3000 229#endif 230 |
231#ifdef HAVE_GTK2_SUPPORT 232int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist, const char *help, 233 struct hist_browser_timer *hbt __maybe_unused, 234 float min_pcnt); 235#else 236static inline 237int perf_evlist__gtk_browse_hists(struct perf_evlist *evlist __maybe_unused, 238 const char *help __maybe_unused, 239 struct hist_browser_timer *hbt __maybe_unused, 240 float min_pcnt __maybe_unused) 241{ 242 return 0; 243} 244#endif 245 | |
246unsigned int hists__sort_list_width(struct hists *self); 247#endif /* __PERF_HIST_H */ | 231unsigned int hists__sort_list_width(struct hists *self); 232#endif /* __PERF_HIST_H */ |