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

keysyms.h (655B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifndef _PERF_KEYSYMS_H_
      3#define _PERF_KEYSYMS_H_ 1
      4
      5#include "libslang.h"
      6
      7#define K_DOWN	SL_KEY_DOWN
      8#define K_END	SL_KEY_END
      9#define K_ENTER	'\r'
     10#define K_ESC	033
     11#define K_F1	SL_KEY_F(1)
     12#define K_HOME	SL_KEY_HOME
     13#define K_LEFT	SL_KEY_LEFT
     14#define K_PGDN	SL_KEY_NPAGE
     15#define K_PGUP	SL_KEY_PPAGE
     16#define K_RIGHT	SL_KEY_RIGHT
     17#define K_TAB	'\t'
     18#define K_UNTAB	SL_KEY_UNTAB
     19#define K_UP	SL_KEY_UP
     20#define K_BKSPC 0x7f
     21#define K_DEL	SL_KEY_DELETE
     22
     23/* Not really keys */
     24#define K_TIMER	 -1
     25#define K_ERROR	 -2
     26#define K_RESIZE -3
     27#define K_SWITCH_INPUT_DATA -4
     28#define K_RELOAD -5
     29
     30#endif /* _PERF_KEYSYMS_H_ */