Release 4.10 tools/perf/ui/gtk/setup.c
#include "gtk.h"
#include "../../util/cache.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;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
namhyung kim | namhyung kim | 34 | 97.14% | 6 | 85.71% |
arnaldo carvalho de melo | arnaldo carvalho de melo | 1 | 2.86% | 1 | 14.29% |
| Total | 35 | 100.00% | 7 | 100.00% |
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();
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
namhyung kim | namhyung kim | 26 | 96.30% | 3 | 75.00% |
irina tirdea | irina tirdea | 1 | 3.70% | 1 | 25.00% |
| Total | 27 | 100.00% | 4 | 100.00% |
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
namhyung kim | namhyung kim | 74 | 97.37% | 7 | 77.78% |
arnaldo carvalho de melo | arnaldo carvalho de melo | 1 | 1.32% | 1 | 11.11% |
irina tirdea | irina tirdea | 1 | 1.32% | 1 | 11.11% |
| Total | 76 | 100.00% | 9 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.