diff options
author | Namhyung Kim <[email protected]> | 2012-08-16 17:14:52 +0900 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2012-08-17 12:37:11 -0300 |
commit | 4bb1646a80db65bb45c0a1bffb2435c6690c392e (patch) | |
tree | 137c08abf4cb8d74d79d76ab299e681ff2ae1780 /tools/perf/ui/gtk/setup.c | |
parent | e6e9046879493d8bf8f44ac1f2718c4a5628aa52 (diff) |
perf ui gtk: Implement helpline_fns
Add helpline API implementation to GTK front-end.
Signed-off-by: Namhyung Kim <[email protected]>
Acked-by: Pekka Enberg <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Pekka Enberg <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Diffstat (limited to 'tools/perf/ui/gtk/setup.c')
-rw-r--r-- | tools/perf/ui/gtk/setup.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/ui/gtk/setup.c b/tools/perf/ui/gtk/setup.c index 92879ce61e2f..ad40b3626fdb 100644 --- a/tools/perf/ui/gtk/setup.c +++ b/tools/perf/ui/gtk/setup.c @@ -7,6 +7,7 @@ extern struct perf_error_ops perf_gtk_eops; int perf_gtk__init(void) { perf_error__register(&perf_gtk_eops); + perf_gtk__init_helpline(); return gtk_init_check(NULL, NULL) ? 0 : -1; } |