fa0d98462f
Remove the last unneeded use of cache.h in a header, we can check where it is really needed, i.e. we can remove it and be sure that it isn't being obtained indirectly. This is an old file, used by now incorrectly in many places, so it was providing includes needed indirectly, fixup this fallout. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Link: https://lkml.kernel.org/n/tip-3x3l8gihoaeh7714os861ia7@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
24 lines
489 B
C
24 lines
489 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include "gtk.h"
|
|
#include "../../util/debug.h"
|
|
|
|
extern struct perf_error_ops perf_gtk_eops;
|
|
|
|
int perf_gtk__init(void)
|
|
{
|
|
perf_error__register(&perf_gtk_eops);
|
|
perf_gtk__init_helpline();
|
|
gtk_ui_progress__init();
|
|
perf_gtk__init_hpp();
|
|
|
|
return gtk_init_check(NULL, NULL) ? 0 : -1;
|
|
}
|
|
|
|
void perf_gtk__exit(bool wait_for_ok __maybe_unused)
|
|
{
|
|
if (!perf_gtk__is_active_context(pgctx))
|
|
return;
|
|
perf_error__unregister(&perf_gtk_eops);
|
|
gtk_main_quit();
|
|
}
|