cregit-Linux how code gets into the kernel

Release 4.7 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); #endif /* _PERF_UI_H_ */

Overall Contributors

PersonTokensPropCommitsCommitProp
namhyung kimnamhyung kim6870.83%240.00%
arnaldo carvalho de meloarnaldo carvalho de melo2728.12%240.00%
ingo molnaringo molnar11.04%120.00%
Total96100.00%5100.00%
Directory: tools/perf/ui
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}