cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

util.h (801B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifndef _PERF_UI_UTIL_H_
      3#define _PERF_UI_UTIL_H_ 1
      4
      5#include <stdarg.h>
      6
      7int ui__getch(int delay_secs);
      8int ui__popup_menu(int argc, char * const argv[], int *keyp);
      9int ui__help_window(const char *text);
     10int ui__dialog_yesno(const char *msg);
     11void __ui__info_window(const char *title, const char *text, const char *exit_msg);
     12void ui__info_window(const char *title, const char *text);
     13int ui__question_window(const char *title, const char *text,
     14			const char *exit_msg, int delay_secs);
     15
     16struct perf_error_ops {
     17	int (*error)(const char *format, va_list args);
     18	int (*warning)(const char *format, va_list args);
     19};
     20
     21int perf_error__register(struct perf_error_ops *eops);
     22int perf_error__unregister(struct perf_error_ops *eops);
     23
     24#endif /* _PERF_UI_UTIL_H_ */