cregit-Linux how code gets into the kernel

Release 4.10 tools/perf/ui/ui.h

Directory: tools/perf/ui
#ifndef _PERF_UI_H_

#define _PERF_UI_H_ 1

#include <pthread.h>
#include <stdbool.h>
#include <linux/compiler.h>

extern pthread_mutex_t ui__lock;
extern void *perf_gtk_handle;

extern int use_browser;

void setup_browser(bool fallback_to_pager);
void exit_browser(bool wait_for_ok);

#ifdef HAVE_SLANG_SUPPORT
int ui__init(void);
void ui__exit(bool wait_for_ok);
#else

static inline int ui__init(void) { return -1; }

Contributors

PersonTokensPropCommitsCommitProp
namhyung kimnamhyung kim13100.00%1100.00%
Total13100.00%1100.00%


static inline void ui__exit(bool wait_for_ok __maybe_unused) {}

Contributors

PersonTokensPropCommitsCommitProp
namhyung kimnamhyung kim10100.00%1100.00%
Total10100.00%1100.00%

#endif void ui__refresh_dimensions(bool force); struct option; int stdio__config_color(const struct option *opt, const char *mode, int unset); #endif /* _PERF_UI_H_ */

Overall Contributors

PersonTokensPropCommitsCommitProp
namhyung kimnamhyung kim6858.12%233.33%
arnaldo carvalho de meloarnaldo carvalho de melo4841.03%350.00%
ingo molnaringo molnar10.85%116.67%
Total117100.00%6100.00%
Directory: tools/perf/ui
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.