Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.2-rc7 25 lines 516 B view raw
1#ifndef _PERF_KEYSYMS_H_ 2#define _PERF_KEYSYMS_H_ 1 3 4#include "libslang.h" 5 6#define K_DOWN SL_KEY_DOWN 7#define K_END SL_KEY_END 8#define K_ENTER '\r' 9#define K_ESC 033 10#define K_F1 SL_KEY_F(1) 11#define K_HOME SL_KEY_HOME 12#define K_LEFT SL_KEY_LEFT 13#define K_PGDN SL_KEY_NPAGE 14#define K_PGUP SL_KEY_PPAGE 15#define K_RIGHT SL_KEY_RIGHT 16#define K_TAB '\t' 17#define K_UNTAB SL_KEY_UNTAB 18#define K_UP SL_KEY_UP 19 20/* Not really keys */ 21#define K_TIMER -1 22#define K_ERROR -2 23#define K_RESIZE -3 24 25#endif /* _PERF_KEYSYMS_H_ */