aio.h:#define _AIO_H 1
aio.h:#define AIO_CANCELED AIO_CANCELED
aio.h:#define AIO_NOTCANCELED AIO_NOTCANCELED aio.h:#define AIO_ALLDONE AIO_ALLDONE
aio.h:#define LIO_READ LIO_READ aio.h:#define LIO_WRITE LIO_WRITE aio.h:#define LIO_NOP LIO_NOP aio.h:#define LIO_WAIT LIO_WAIT aio.h:#define LIO_NOWAIT LIO_NOWAIT aliases.h:#define _ALIASES_H 1 a.out.h:#define __A_OUT_GNU_H__ a.out.h:#define __GNU_EXEC_MACROS__
a.out.h:#define N_MAGIC(exec) ((exec).a_info & 0xffff)
a.out.h:#define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0x ff))
a.out.h:#define N_FLAGS(exec) (((exec).a_info >> 24) & 0xff) a.out.h:#define N_SET_INFO(exec, magic, type, flags) \
a.out.h:#define N_SET_MAGIC(exec, magic) \
a.out.h:#define N_SET_MACHTYPE(exec, machtype) \ a.out.h:#define N_SET_FLAGS(exec, flags) \
a.out.h:#define OMAGIC 0407 a.out.h:#define NMAGIC 0410 a.out.h:#define ZMAGIC 0413 a.out.h:#define QMAGIC 0314 a.out.h:#define CMAGIC 0421
a.out.h:#define N_TRSIZE(a) ((a).a_trsize) a.out.h:#define N_DRSIZE(a) ((a).a_drsize) a.out.h:#define N_SYMSIZE(a) ((a).a_syms) a.out.h:#define N_BADMAG(x) \
a.out.h:#define _N_HDROFF(x) (1024 - sizeof (struct exec)) a.out.h:#define N_TXTOFF(x) \
a.out.h:#define N_DATOFF(x) (N_TXTOFF(x) + (x).a_text) a.out.h:#define N_TRELOFF(x) (N_DATOFF(x) + (x).a_data) a.out.h:#define N_DRELOFF(x) (N_TRELOFF(x) + N_TRSIZE(x)) a.out.h:#define N_SYMOFF(x) (N_DRELOFF(x) + N_DRSIZE(x)) a.out.h:#define N_STROFF(x) (N_SYMOFF(x) + N_SYMSIZE(x)) a.out.h:#define N_TXTADDR(x) (N_MAGIC(x) == QMAGIC ? 4096 : 0) a.out.h:#define SEGMENT_SIZE 1024
a.out.h:#define _N_SEGMENT_ROUND(x) (((x) + SEGMENT_SIZE 1) & ~(SEGMENT_SIZE 1))
a.out.h:#define _N_TXTENDADDR(x) (N_TXTADDR(x)+(x).a_text) a.out.h:#define N_DATADDR(x) \
a.out.h:#define N_BSSADDR(x) (N_DATADDR(x) + (x).a_data) a.out.h:#define N_UNDF 0 a.out.h:#define N_ABS 2 a.out.h:#define N_TEXT 4 a.out.h:#define N_DATA 6 a.out.h:#define N_BSS 8 a.out.h:#define N_FN 15 a.out.h:#define N_EXT 1 a.out.h:#define N_TYPE 036 a.out.h:#define N_STAB 0340 a.out.h:#define N_INDR 0xa
a.out.h:#define N_SETV 0x1C /* Pointer to set vector in data area. */ argp.h:#define _ARGP_H argp.h:#define __need_error_t argp.h:#define OPTION_ARG_OPTIONAL 0x1 argp.h:#define OPTION_HIDDEN 0x2 argp.h:#define OPTION_ALIAS 0x4 argp.h:#define OPTION_DOC 0x8
argp.h:#define OPTION_NO_USAGE 0x10
argp.h:#define ARGP_ERR_UNKNOWN E2BIG /* Hurd should never need E2BIG. XXX */ argp.h:#define ARGP_KEY_ARG 0 argp.h:#define ARGP_KEY_ARGS 0x1000006 argp.h:#define ARGP_KEY_END 0x1000001 argp.h:#define ARGP_KEY_NO_ARGS 0x1000002 argp.h:#define ARGP_KEY_INIT 0x1000003 argp.h:#define ARGP_KEY_FINI 0x1000007 argp.h:#define ARGP_KEY_SUCCESS 0x1000004 argp.h:#define ARGP_KEY_ERROR 0x1000005
argp.h:#define ARGP_KEY_HELP_PRE_DOC 0x2000001 /* Help text preceeding option s. */
argp.h:#define ARGP_KEY_HELP_POST_DOC 0x2000002 /* Help text following options . */
argp.h:#define ARGP_KEY_HELP_HEADER 0x2000003 /* Option header string. */ argp.h:#define ARGP_KEY_HELP_EXTRA 0x2000004 /* After all other documentati on;
argp.h:#define ARGP_KEY_HELP_DUP_ARGS_NOTE 0x2000005
argp.h:#define ARGP_KEY_HELP_ARGS_DOC 0x2000006 /* Argument doc string. */ argp.h:#define ARGP_PARSE_ARGV0 0x01 argp.h:#define ARGP_NO_ERRS 0x02 argp.h:#define ARGP_NO_ARGS 0x04 argp.h:#define ARGP_IN_ORDER 0x08 argp.h:#define ARGP_NO_HELP 0x10 argp.h:#define ARGP_NO_EXIT 0x20 argp.h:#define ARGP_LONG_ONLY 0x40
argp.h:#define ARGP_SILENT (ARGP_NO_EXIT | ARGP_NO_ERRS | ARGP_NO_HELP) argp.h:#define ARGP_HELP_USAGE 0x01 /* a Usage: message. */
argp.h:#define ARGP_HELP_SHORT_USAGE 0x02 /* " but don't actually print opti ons. */
argp.h:#define ARGP_HELP_SEE 0x04 /* a `Try ... for more help' messag e. */
argp.h:#define ARGP_HELP_LONG 0x08 /* a long help message. */
argp.h:#define ARGP_HELP_PRE_DOC 0x10 /* doc string preceding long help. */
argp.h:#define ARGP_HELP_POST_DOC 0x20 /* doc string following long help. */
argp.h:#define ARGP_HELP_DOC (ARGP_HELP_PRE_DOC | ARGP_HELP_POST_DOC) argp.h:#define ARGP_HELP_BUG_ADDR 0x40 /* bug report address */
argp.h:#define ARGP_HELP_LONG_ONLY 0x80 /* modify output appropriately to argp.h:#define ARGP_HELP_EXIT_ERR 0x100 /* Call exit(1) instead of returni ng. */
argp.h:#define ARGP_HELP_EXIT_OK 0x200 /* Call exit(0) instead of returni ng. */ argp.h:#define ARGP_HELP_STD_ERR \ argp.h:#define ARGP_HELP_STD_USAGE \ argp.h:#define ARGP_HELP_STD_HELP \ argz.h:#define _ARGZ_H 1 argz.h:#define __need_error_t ar.h:#define _AR_H 1
ar.h:#define ARMAG "!<arch>\n" /* String that begins an archive file. */
ar.h:#define SARMAG 8 /* Size of that string. */
ar.h:#define ARFMAG "`\n" /* String in ar_fmag at end of each head er. */
arpa/ftp.h:#define PRELIM 1 /* positive preliminary */ arpa/ftp.h:#define COMPLETE 2 /* positive completion */
arpa/ftp.h:#define CONTINUE 3 /* positive intermediate */
arpa/ftp.h:#define TRANSIENT 4 /* transient negative completion */ arpa/ftp.h:#define ERROR 5 /* permanent negative completion
*/
arpa/ftp.h:#define REC_EOF '\002' /* Record-mode End-of-File */ arpa/ftp.h:#define BLK_ERRORS 0x20 /* Block is suspected of containing erro rs */
arpa/telnet.h:#define EOR 239 /* end of record (transparent mode ) */
arpa/telnet.h:#define SYNCH 242 /* for telfunc calls */ arpa/telnet.h:#define TELOPT_BINARY 0 /* 8-bit data path */ arpa/telnet.h:#define TELOPT_ECHO 1 /* echo */
arpa/telnet.h:#define TELOPT_NAOL 8 /* negotiate about output line w idth */
arpa/telnet.h:#define TELOPT_NAOP 9 /* negotiate about output page s ize */
arpa/telnet.h:#define TELOPT_NAOCRD 10 /* negotiate about CR dispositio n */
arpa/telnet.h:#define TELOPT_NAOHTS 11 /* negotiate about horizontal ta bstops */
arpa/telnet.h:#define TELOPT_NAOHTD 12 /* negotiate about horizontal ta b disposition */
arpa/telnet.h:#define TELOPT_NAOFFD 13 /* negotiate about formfeed disp osition */
arpa/telnet.h:#define TELOPT_NAOVTS 14 /* negotiate about vertical tab stops */
arpa/telnet.h:#define TELOPT_NAOVTD 15 /* negotiate about vertical tab disposition */
arpa/telnet.h:#define TELOPT_NAOLFD 16 /* negotiate about output LF dis position */
arpa/telnet.h:#define TELOPT_XASCII 17 /* extended ascii character set */
arpa/telnet.h:#define TELOPT_LINEMODE 34 /* Linemode option */ arpa/telnet.h:#define TELOPT_XDISPLOC 35 /* X Display Location */
arpa/telnet.h:#define TELOPT_OLD_ENVIRON 36 /* Old - Environment variables * /
arpa/telnet.h:#define TELOPT_NEW_ENVIRON 39 /* New - Environment variables * / arpa/telnet.h:#define MODE_SOFT_TAB 0x08 arpa/telnet.h:#define MODE_LIT_ECHO 0x10 arpa/telnet.h:#define MODE_FLOW 0x0100 arpa/telnet.h:#define MODE_ECHO 0x0200 arpa/telnet.h:#define MODE_INBIN 0x0400 arpa/telnet.h:#define MODE_OUTBIN 0x0800 arpa/telnet.h:#define MODE_FORCE 0x1000 arpa/telnet.h:#define SLC_NAME(x) slc_names[x] arpa/telnet.h:#define ENV_USERVAR 3
arpa/nameser_compat.h:#define PACKETSZ NS_PACKETSZ arpa/nameser_compat.h:#define MAXDNAME NS_MAXDNAME arpa/nameser_compat.h:#define MAXCDNAME NS_MAXCDNAME arpa/nameser_compat.h:#define MAXLABEL NS_MAXLABEL arpa/nameser_compat.h:#define QFIXEDSZ NS_QFIXEDSZ arpa/nameser_compat.h:#define RRFIXEDSZ NS_RRFIXEDSZ arpa/nameser_compat.h:#define INT8SZ NS_INT8SZ arpa/nameser_compat.h:#define NAMESERVER_PORT NS_DEFAULTPORT arpa/nameser_compat.h:#define S_ZONE ns_s_zn
arpa/nameser_compat.h:#define S_PREREQ ns_s_pr arpa/nameser_compat.h:#define S_UPDATE ns_s_ud
arpa/nameser_compat.h:#define S_ADDT ns_s_ar arpa/nameser_compat.h:#define QUERY ns_o_query arpa/nameser_compat.h:#define IQUERY ns_o_iquery arpa/nameser_compat.h:#define STATUS ns_o_status arpa/nameser_compat.h:#define NOERROR ns_r_noerror
arpa/nameser_compat.h:#define FORMERR ns_r_formerr arpa/nameser_compat.h:#define SERVFAIL ns_r_servfail
arpa/nameser_compat.h:#define NXDOMAIN ns_r_nxdomain
arpa/nameser_compat.h:#define NOTIMP ns_r_notimpl arpa/nameser_compat.h:#define REFUSED ns_r_refused arpa/nameser_compat.h:#define YXDOMAIN ns_r_yxdomain
arpa/nameser_compat.h:#define YXRRSET ns_r_yxrrset arpa/nameser_compat.h:#define NXRRSET ns_r_nxrrset arpa/nameser_compat.h:#define NOTAUTH ns_r_notauth arpa/nameser_compat.h:#define NOTZONE ns_r_notzone arpa/nameser_compat.h:/*#define BADSIG ns_r_badsig*/ arpa/nameser_compat.h:/*#define BADKEY ns_r_badkey*/ arpa/nameser_compat.h:/*#define BADTIME ns_r_badtime*/ arpa/nameser_compat.h:#define DELETE ns_uop_delete arpa/nameser_compat.h:#define ADD ns_uop_add arpa/nameser_compat.h:#define T_A ns_t_a arpa/nameser_compat.h:#define T_NS ns_t_ns arpa/nameser_compat.h:#define T_MD ns_t_md arpa/nameser_compat.h:#define T_MF ns_t_mf arpa/nameser_compat.h:#define T_CNAME ns_t_cname arpa/nameser_compat.h:#define T_SOA ns_t_soa arpa/nameser_compat.h:#define T_MB ns_t_mb arpa/nameser_compat.h:#define T_MG ns_t_mg arpa/nameser_compat.h:#define T_MR ns_t_mr arpa/nameser_compat.h:#define T_NULL ns_t_null arpa/nameser_compat.h:#define T_WKS ns_t_wks arpa/nameser_compat.h:#define T_PTR ns_t_ptr arpa/nameser_compat.h:#define T_HINFO ns_t_hinfo arpa/nameser_compat.h:#define T_MINFO ns_t_minfo arpa/nameser_compat.h:#define T_MX ns_t_mx arpa/nameser_compat.h:#define T_TXT ns_t_txt arpa/nameser_compat.h:#define T_AFSDB ns_t_afsdb arpa/nameser_compat.h:#define T_X25 ns_t_x25 arpa/nameser_compat.h:#define T_ISDN ns_t_isdn arpa/nameser_compat.h:#define T_RT ns_t_rt arpa/nameser_compat.h:#define T_NSAP ns_t_nsap arpa/nameser_compat.h:#define T_NSAP_PTR ns_t_nsap_ptr arpa/nameser_compat.h:#define T_ATMA ns_t_atma arpa/nameser_compat.h:#define T_NAPTR ns_t_naptr arpa/nameser_compat.h:#define T_A6 ns_t_a6 arpa/nameser_compat.h:#define T_DNAME ns_t_dname arpa/nameser_compat.h:#define T_AXFR ns_t_axfr arpa/nameser_compat.h:#define T_MAILB ns_t_mailb arpa/nameser_compat.h:#define T_MAILA ns_t_maila arpa/nameser_compat.h:#define T_ANY ns_t_any arpa/nameser_compat.h:#define C_IN ns_c_in arpa/nameser_compat.h:#define C_CHAOS ns_c_chaos arpa/nameser_compat.h:#define C_HS ns_c_hs arpa/nameser_compat.h:#define C_NONE ns_c_none arpa/nameser_compat.h:#define C_ANY ns_c_any arpa/nameser.h:#define _ARPA_NAMESER_H_
arpa/nameser.h:#define BIND_4_COMPAT
arpa/nameser.h:#define __NAMESER 19991006 /*%< New interface versi on stamp. */
arpa/nameser.h:#define NS_PACKETSZ 512 /*%< default UDP packet size */ arpa/nameser.h:#define NS_MAXDNAME 1025 /*%< maximum domain name */ arpa/nameser.h:#define NS_MAXMSG 65535 /*%< maximum message size */ arpa/nameser.h:#define NS_MAXCDNAME 255 /*%< maximum compressed domain n ame */
bel */
arpa/nameser.h:#define NS_HFIXEDSZ 12 /*%< #/bytes of fixed data in he ader */
arpa/nameser.h:#define NS_QFIXEDSZ 4 /*%< #/bytes of fixed data in qu ery */
arpa/nameser.h:#define NS_RRFIXEDSZ 10 /*%< #/bytes of fixed data in r record */
arpa/nameser.h:#define NS_INT32SZ 4 /*%< #/bytes of data in a u_int3 2_t */
arpa/nameser.h:#define NS_INT16SZ 2 /*%< #/bytes of data in a u_int1 6_t */
arpa/nameser.h:#define NS_INT8SZ 1 /*%< #/bytes of data in a u_int8 _t */
arpa/nameser.h:#define NS_INADDRSZ 4 /*%< IPv4 T_A */ arpa/nameser.h:#define NS_IN6ADDRSZ 16 /*%< IPv6 T_AAAA */
arpa/nameser.h:#define NS_CMPRSFLGS 0xc0 /*%< Flag bits indicating name c ompression. */
arpa/nameser.h:#define NS_DEFAULTPORT 53 /*%< For both TCP and UDP. */ arpa/nameser.h:#define ns_msg_id(handle) ((handle)._id + 0)
arpa/nameser.h:#define ns_msg_base(handle) ((handle)._msg + 0) arpa/nameser.h:#define ns_msg_end(handle) ((handle)._eom + 0)
arpa/nameser.h:#define ns_msg_size(handle) ((handle)._eom - (handle)._msg)
arpa/nameser.h:#define ns_msg_count(handle, section) ((handle)._counts[section] + 0)
arpa/nameser.h:#define ns_rr_name(rr) (((rr).name[0] != '\0') ? (rr).name : ". ")
arpa/nameser.h:#define ns_rr_type(rr) ((ns_type)((rr).type + 0)) arpa/nameser.h:#define ns_rr_class(rr) ((ns_class)((rr).rr_class + 0)) arpa/nameser.h:#define ns_rr_ttl(rr) ((rr).ttl + 0)
arpa/nameser.h:#define ns_rr_rdlen(rr) ((rr).rdlength + 0) arpa/nameser.h:#define ns_rr_rdata(rr) ((rr).rdata + 0) arpa/nameser.h:#define NS_TSIG_FUDGE 300
arpa/nameser.h:#define NS_TSIG_TCP_COUNT 100
arpa/nameser.h:#define NS_TSIG_ALG_HMAC_MD5 "HMAC-MD5.SIG-ALG.REG.INT" arpa/nameser.h:#define NS_TSIG_ERROR_NO_TSIG -10
arpa/nameser.h:#define NS_TSIG_ERROR_NO_SPACE -11 arpa/nameser.h:#define NS_TSIG_ERROR_FORMERR -12
arpa/nameser.h:#define ns_t_rr_p(t) (!ns_t_qt_p(t) && !ns_t_mrr_p(t))
arpa/nameser.h:#define ns_t_udp_p(t) ((t) != ns_t_axfr && (t) != ns_t_zxfr) arpa/nameser.h:#define ns_t_xfr_p(t) ((t) == ns_t_axfr || (t) == ns_t_ixfr || \ arpa/nameser.h:#define NS_KEY_RESERVED_BITMASK2 0xFFFF /*%< no bits defined here */ arpa/nameser.h:#define NS_KEY_PROT_TLS 1 arpa/nameser.h:#define NS_KEY_PROT_EMAIL 2 arpa/nameser.h:#define NS_KEY_PROT_DNSSEC 3 arpa/nameser.h:#define NS_KEY_PROT_IPSEC 4 arpa/nameser.h:#define NS_KEY_PROT_ANY 255
arpa/nameser.h:#define NS_MD5RSA_MIN_SIZE ((NS_MD5RSA_MIN_BITS+7)/8) arpa/nameser.h:#define NS_MD5RSA_MAX_SIZE ((NS_MD5RSA_MAX_BITS+7)/8) arpa/nameser.h:#define NS_DSA_SIG_SIZE 41
arpa/nameser.h:#define NS_DSA_MIN_SIZE 213 arpa/nameser.h:#define NS_DSA_MAX_BYTES 405 arpa/nameser.h:#define NS_NXT_MAX 127
arpa/nameser.h:#define NS_OPT_DNSSEC_OK 0x8000U arpa/nameser.h:#define NS_OPT_NSID 3 arpa/nameser.h:#define NS_GET16(s, cp) do { \ arpa/nameser.h:#define NS_GET32(l, cp) do { \ arpa/nameser.h:#define NS_PUT16(s, cp) do { \ arpa/nameser.h:#define NS_PUT32(l, cp) do { \ asm/ipcbuf.h:#define _ASM_X86_IPCBUF_H
asm/param.h:#define _ASM_X86_PARAM_H asm/param.h:#define HZ 100
asm/param.h:#define EXEC_PAGESIZE 4096 asm/param.h:#define NOGROUP (-1)
asm/param.h:#define MAXHOSTNAMELEN 64 /* max length of hostname */ asm/prctl.h:#define _ASM_X86_PRCTL_H asm/prctl.h:#define ARCH_SET_GS 0x1001 asm/prctl.h:#define ARCH_SET_FS 0x1002 asm/prctl.h:#define ARCH_GET_FS 0x1003 asm/prctl.h:#define ARCH_GET_GS 0x1004 asm/mman.h:#define _ASM_X86_MMAN_H
asm/mman.h:#define MAP_32BIT 0x40 /* only give out 32bit addresses */
asm/mman.h:#define MAP_GROWSDOWN 0x0100 /* stack-like segment */ asm/mman.h:#define MAP_DENYWRITE 0x0800 /* ETXTBSY */
asm/mman.h:#define MAP_EXECUTABLE 0x1000 /* mark it as an executa ble */
asm/mman.h:#define MAP_LOCKED 0x2000 /* pages are locked */
asm/mman.h:#define MAP_NORESERVE 0x4000 /* don't check for reser vations */
asm/mman.h:#define MAP_POPULATE 0x8000 /* populate (prefault) pagetable s */
asm/mman.h:#define MAP_NONBLOCK 0x10000 /* do not block on IO */
asm/mman.h:#define MAP_STACK 0x20000 /* give out an address that is b est suited for process/thread stacks */
asm/mman.h:#define MCL_CURRENT 1 /* lock all current mappings */ asm/mman.h:#define MCL_FUTURE 2 /* lock all future mappings */ asm/bootparam.h:#define _ASM_X86_BOOTPARAM_H asm/bootparam.h:#define SETUP_NONE 0 asm/bootparam.h:#define SETUP_E820_EXT 1 asm/bootparam.h:#define RAMDISK_IMAGE_START_MASK 0x07FF asm/bootparam.h:#define RAMDISK_PROMPT_FLAG 0x8000 asm/bootparam.h:#define RAMDISK_LOAD_FLAG 0x4000 asm/bootparam.h:#define LOADED_HIGH (1<<0) asm/bootparam.h:#define QUIET_FLAG (1<<5) asm/bootparam.h:#define KEEP_SEGMENTS (1<<6) asm/bootparam.h:#define CAN_USE_HEAP (1<<7) asm/unistd_32.h:#define _ASM_X86_UNISTD_32_H asm/unistd_32.h:#define __NR_restart_syscall 0 asm/unistd_32.h:#define __NR_exit 1 asm/unistd_32.h:#define __NR_fork 2 asm/unistd_32.h:#define __NR_read 3 asm/unistd_32.h:#define __NR_write 4 asm/unistd_32.h:#define __NR_open 5 asm/unistd_32.h:#define __NR_close 6 asm/unistd_32.h:#define __NR_waitpid 7 asm/unistd_32.h:#define __NR_creat 8 asm/unistd_32.h:#define __NR_link 9 asm/unistd_32.h:#define __NR_unlink 10 asm/unistd_32.h:#define __NR_execve 11 asm/unistd_32.h:#define __NR_chdir 12 asm/unistd_32.h:#define __NR_time 13 asm/unistd_32.h:#define __NR_mknod 14 asm/unistd_32.h:#define __NR_chmod 15 asm/unistd_32.h:#define __NR_lchown 16 asm/unistd_32.h:#define __NR_break 17 asm/unistd_32.h:#define __NR_oldstat 18 asm/unistd_32.h:#define __NR_lseek 19 asm/unistd_32.h:#define __NR_getpid 20 asm/unistd_32.h:#define __NR_mount 21
asm/unistd_32.h:#define __NR_umount 22 asm/unistd_32.h:#define __NR_setuid 23 asm/unistd_32.h:#define __NR_getuid 24 asm/unistd_32.h:#define __NR_stime 25 asm/unistd_32.h:#define __NR_ptrace 26 asm/unistd_32.h:#define __NR_alarm 27 asm/unistd_32.h:#define __NR_oldfstat 28 asm/unistd_32.h:#define __NR_pause 29 asm/unistd_32.h:#define __NR_utime 30 asm/unistd_32.h:#define __NR_stty 31 asm/unistd_32.h:#define __NR_gtty 32 asm/unistd_32.h:#define __NR_access 33 asm/unistd_32.h:#define __NR_nice 34 asm/unistd_32.h:#define __NR_ftime 35 asm/unistd_32.h:#define __NR_sync 36 asm/unistd_32.h:#define __NR_kill 37 asm/unistd_32.h:#define __NR_rename 38 asm/unistd_32.h:#define __NR_mkdir 39 asm/unistd_32.h:#define __NR_rmdir 40 asm/unistd_32.h:#define __NR_dup 41 asm/unistd_32.h:#define __NR_pipe 42 asm/unistd_32.h:#define __NR_times 43 asm/unistd_32.h:#define __NR_prof 44 asm/unistd_32.h:#define __NR_brk 45 asm/unistd_32.h:#define __NR_setgid 46 asm/unistd_32.h:#define __NR_getgid 47 asm/unistd_32.h:#define __NR_signal 48 asm/unistd_32.h:#define __NR_geteuid 49 asm/unistd_32.h:#define __NR_getegid 50 asm/unistd_32.h:#define __NR_acct 51 asm/unistd_32.h:#define __NR_umount2 52 asm/unistd_32.h:#define __NR_lock 53 asm/unistd_32.h:#define __NR_ioctl 54 asm/unistd_32.h:#define __NR_fcntl 55 asm/unistd_32.h:#define __NR_mpx 56 asm/unistd_32.h:#define __NR_setpgid 57 asm/unistd_32.h:#define __NR_ulimit 58 asm/unistd_32.h:#define __NR_oldolduname 59 asm/unistd_32.h:#define __NR_umask 60 asm/unistd_32.h:#define __NR_chroot 61 asm/unistd_32.h:#define __NR_ustat 62 asm/unistd_32.h:#define __NR_dup2 63 asm/unistd_32.h:#define __NR_getppid 64 asm/unistd_32.h:#define __NR_getpgrp 65 asm/unistd_32.h:#define __NR_setsid 66 asm/unistd_32.h:#define __NR_sigaction 67 asm/unistd_32.h:#define __NR_sgetmask 68 asm/unistd_32.h:#define __NR_ssetmask 69 asm/unistd_32.h:#define __NR_setreuid 70 asm/unistd_32.h:#define __NR_setregid 71 asm/unistd_32.h:#define __NR_sigsuspend 72 asm/unistd_32.h:#define __NR_sigpending 73 asm/unistd_32.h:#define __NR_sethostname 74 asm/unistd_32.h:#define __NR_setrlimit 75
asm/unistd_32.h:#define __NR_getrlimit 76 /* Back compatible 2Gig li mited rlimit */
asm/unistd_32.h:#define __NR_getrusage 77 asm/unistd_32.h:#define __NR_gettimeofday 78 asm/unistd_32.h:#define __NR_settimeofday 79 asm/unistd_32.h:#define __NR_getgroups 80
asm/unistd_32.h:#define __NR_setgroups 81 asm/unistd_32.h:#define __NR_select 82 asm/unistd_32.h:#define __NR_symlink 83 asm/unistd_32.h:#define __NR_oldlstat 84 asm/unistd_32.h:#define __NR_readlink 85 asm/unistd_32.h:#define __NR_uselib 86 asm/unistd_32.h:#define __NR_swapon 87 asm/unistd_32.h:#define __NR_reboot 88 asm/unistd_32.h:#define __NR_readdir 89 asm/unistd_32.h:#define __NR_mmap 90 asm/unistd_32.h:#define __NR_munmap 91 asm/unistd_32.h:#define __NR_truncate 92 asm/unistd_32.h:#define __NR_ftruncate 93 asm/unistd_32.h:#define __NR_fchmod 94 asm/unistd_32.h:#define __NR_fchown 95 asm/unistd_32.h:#define __NR_getpriority 96 asm/unistd_32.h:#define __NR_setpriority 97 asm/unistd_32.h:#define __NR_profil 98 asm/unistd_32.h:#define __NR_statfs 99 asm/unistd_32.h:#define __NR_fstatfs 100 asm/unistd_32.h:#define __NR_ioperm 101 asm/unistd_32.h:#define __NR_socketcall 102 asm/unistd_32.h:#define __NR_syslog 103 asm/unistd_32.h:#define __NR_setitimer 104 asm/unistd_32.h:#define __NR_getitimer 105 asm/unistd_32.h:#define __NR_stat 106 asm/unistd_32.h:#define __NR_lstat 107 asm/unistd_32.h:#define __NR_fstat 108 asm/unistd_32.h:#define __NR_olduname 109 asm/unistd_32.h:#define __NR_iopl 110 asm/unistd_32.h:#define __NR_vhangup 111 asm/unistd_32.h:#define __NR_idle 112 asm/unistd_32.h:#define __NR_vm86old 113 asm/unistd_32.h:#define __NR_wait4 114 asm/unistd_32.h:#define __NR_swapoff 115 asm/unistd_32.h:#define __NR_sysinfo 116 asm/unistd_32.h:#define __NR_ipc 117 asm/unistd_32.h:#define __NR_fsync 118 asm/unistd_32.h:#define __NR_sigreturn 119 asm/unistd_32.h:#define __NR_clone 120 asm/unistd_32.h:#define __NR_setdomainname 121 asm/unistd_32.h:#define __NR_uname 122 asm/unistd_32.h:#define __NR_modify_ldt 123 asm/unistd_32.h:#define __NR_adjtimex 124 asm/unistd_32.h:#define __NR_mprotect 125 asm/unistd_32.h:#define __NR_sigprocmask 126 asm/unistd_32.h:#define __NR_create_module 127 asm/unistd_32.h:#define __NR_init_module 128 asm/unistd_32.h:#define __NR_delete_module 129 asm/unistd_32.h:#define __NR_get_kernel_syms 130 asm/unistd_32.h:#define __NR_quotactl 131 asm/unistd_32.h:#define __NR_getpgid 132 asm/unistd_32.h:#define __NR_fchdir 133 asm/unistd_32.h:#define __NR_bdflush 134 asm/unistd_32.h:#define __NR_sysfs 135 asm/unistd_32.h:#define __NR_personality 136
asm/unistd_32.h:#define __NR_afs_syscall 137 /* Syscall for Andrew File S ystem */
asm/unistd_32.h:#define __NR_setfsuid 138 asm/unistd_32.h:#define __NR_setfsgid 139
asm/unistd_32.h:#define __NR__llseek 140 asm/unistd_32.h:#define __NR_getdents 141 asm/unistd_32.h:#define __NR__newselect 142 asm/unistd_32.h:#define __NR_flock 143 asm/unistd_32.h:#define __NR_msync 144 asm/unistd_32.h:#define __NR_readv 145 asm/unistd_32.h:#define __NR_writev 146 asm/unistd_32.h:#define __NR_getsid 147 asm/unistd_32.h:#define __NR_fdatasync 148 asm/unistd_32.h:#define __NR__sysctl 149 asm/unistd_32.h:#define __NR_mlock 150 asm/unistd_32.h:#define __NR_munlock 151 asm/unistd_32.h:#define __NR_mlockall 152 asm/unistd_32.h:#define __NR_munlockall 153 asm/unistd_32.h:#define __NR_sched_setparam 154 asm/unistd_32.h:#define __NR_sched_getparam 155 asm/unistd_32.h:#define __NR_sched_setscheduler 156 asm/unistd_32.h:#define __NR_sched_getscheduler 157 asm/unistd_32.h:#define __NR_sched_yield 158 asm/unistd_32.h:#define __NR_sched_get_priority_max 159 asm/unistd_32.h:#define __NR_sched_get_priority_min 160 asm/unistd_32.h:#define __NR_sched_rr_get_interval 161 asm/unistd_32.h:#define __NR_nanosleep 162 asm/unistd_32.h:#define __NR_mremap 163 asm/unistd_32.h:#define __NR_setresuid 164 asm/unistd_32.h:#define __NR_getresuid 165 asm/unistd_32.h:#define __NR_vm86 166 asm/unistd_32.h:#define __NR_query_module 167 asm/unistd_32.h:#define __NR_poll 168 asm/unistd_32.h:#define __NR_nfsservctl 169 asm/unistd_32.h:#define __NR_setresgid 170 asm/unistd_32.h:#define __NR_getresgid 171 asm/unistd_32.h:#define __NR_prctl 172 asm/unistd_32.h:#define __NR_rt_sigreturn 173 asm/unistd_32.h:#define __NR_rt_sigaction 174 asm/unistd_32.h:#define __NR_rt_sigprocmask 175 asm/unistd_32.h:#define __NR_rt_sigpending 176 asm/unistd_32.h:#define __NR_rt_sigtimedwait 177 asm/unistd_32.h:#define __NR_rt_sigqueueinfo 178 asm/unistd_32.h:#define __NR_rt_sigsuspend 179 asm/unistd_32.h:#define __NR_pread64 180 asm/unistd_32.h:#define __NR_pwrite64 181 asm/unistd_32.h:#define __NR_chown 182 asm/unistd_32.h:#define __NR_getcwd 183 asm/unistd_32.h:#define __NR_capget 184 asm/unistd_32.h:#define __NR_capset 185 asm/unistd_32.h:#define __NR_sigaltstack 186 asm/unistd_32.h:#define __NR_sendfile 187
asm/unistd_32.h:#define __NR_getpmsg 188 /* some people actually want streams */
asm/unistd_32.h:#define __NR_putpmsg 189 /* some people actually want streams */
asm/unistd_32.h:#define __NR_vfork 190
asm/unistd_32.h:#define __NR_ugetrlimit 191 /* SuS compliant getrlim it */ asm/unistd_32.h:#define __NR_mmap2 192 asm/unistd_32.h:#define __NR_truncate64 193 asm/unistd_32.h:#define __NR_ftruncate64 194 asm/unistd_32.h:#define __NR_stat64 195 asm/unistd_32.h:#define __NR_lstat64 196
asm/unistd_32.h:#define __NR_fstat64 197 asm/unistd_32.h:#define __NR_lchown32 198 asm/unistd_32.h:#define __NR_getuid32 199 asm/unistd_32.h:#define __NR_getgid32 200 asm/unistd_32.h:#define __NR_geteuid32 201 asm/unistd_32.h:#define __NR_getegid32 202 asm/unistd_32.h:#define __NR_setreuid32 203 asm/unistd_32.h:#define __NR_setregid32 204 asm/unistd_32.h:#define __NR_getgroups32 205 asm/unistd_32.h:#define __NR_setgroups32 206 asm/unistd_32.h:#define __NR_fchown32 207 asm/unistd_32.h:#define __NR_setresuid32 208 asm/unistd_32.h:#define __NR_getresuid32 209 asm/unistd_32.h:#define __NR_setresgid32 210 asm/unistd_32.h:#define __NR_getresgid32 211 asm/unistd_32.h:#define __NR_chown32 212 asm/unistd_32.h:#define __NR_setuid32 213 asm/unistd_32.h:#define __NR_setgid32 214 asm/unistd_32.h:#define __NR_setfsuid32 215 asm/unistd_32.h:#define __NR_setfsgid32 216 asm/unistd_32.h:#define __NR_pivot_root 217 asm/unistd_32.h:#define __NR_mincore 218 asm/unistd_32.h:#define __NR_madvise 219
asm/unistd_32.h:#define __NR_madvise1 219 /* delete when C lib stu b is removed */ asm/unistd_32.h:#define __NR_getdents64 220 asm/unistd_32.h:#define __NR_fcntl64 221 asm/unistd_32.h:#define __NR_gettid 224 asm/unistd_32.h:#define __NR_readahead 225 asm/unistd_32.h:#define __NR_setxattr 226 asm/unistd_32.h:#define __NR_lsetxattr 227 asm/unistd_32.h:#define __NR_fsetxattr 228 asm/unistd_32.h:#define __NR_getxattr 229 asm/unistd_32.h:#define __NR_lgetxattr 230 asm/unistd_32.h:#define __NR_fgetxattr 231 asm/unistd_32.h:#define __NR_listxattr 232 asm/unistd_32.h:#define __NR_llistxattr 233 asm/unistd_32.h:#define __NR_flistxattr 234 asm/unistd_32.h:#define __NR_removexattr 235 asm/unistd_32.h:#define __NR_lremovexattr 236 asm/unistd_32.h:#define __NR_fremovexattr 237 asm/unistd_32.h:#define __NR_tkill 238 asm/unistd_32.h:#define __NR_sendfile64 239 asm/unistd_32.h:#define __NR_futex 240 asm/unistd_32.h:#define __NR_sched_setaffinity 241 asm/unistd_32.h:#define __NR_sched_getaffinity 242 asm/unistd_32.h:#define __NR_set_thread_area 243 asm/unistd_32.h:#define __NR_get_thread_area 244 asm/unistd_32.h:#define __NR_io_setup 245 asm/unistd_32.h:#define __NR_io_destroy 246 asm/unistd_32.h:#define __NR_io_getevents 247 asm/unistd_32.h:#define __NR_io_submit 248 asm/unistd_32.h:#define __NR_io_cancel 249 asm/unistd_32.h:#define __NR_fadvise64 250 asm/unistd_32.h:#define __NR_exit_group 252 asm/unistd_32.h:#define __NR_lookup_dcookie 253 asm/unistd_32.h:#define __NR_epoll_create 254 asm/unistd_32.h:#define __NR_epoll_ctl 255 asm/unistd_32.h:#define __NR_epoll_wait 256 asm/unistd_32.h:#define __NR_remap_file_pages 257
asm/unistd_32.h:#define __NR_set_tid_address 258 asm/unistd_32.h:#define __NR_timer_create 259
asm/unistd_32.h:#define __NR_timer_settime (__NR_timer_create+1) asm/unistd_32.h:#define __NR_timer_gettime (__NR_timer_create+2) asm/unistd_32.h:#define __NR_timer_getoverrun (__NR_timer_create+3) asm/unistd_32.h:#define __NR_timer_delete (__NR_timer_create+4) asm/unistd_32.h:#define __NR_clock_settime (__NR_timer_create+5) asm/unistd_32.h:#define __NR_clock_gettime (__NR_timer_create+6) asm/unistd_32.h:#define __NR_clock_getres (__NR_timer_create+7) asm/unistd_32.h:#define __NR_clock_nanosleep (__NR_timer_create+8) asm/unistd_32.h:#define __NR_statfs64 268 asm/unistd_32.h:#define __NR_fstatfs64 269 asm/unistd_32.h:#define __NR_tgkill 270 asm/unistd_32.h:#define __NR_utimes 271 asm/unistd_32.h:#define __NR_fadvise64_64 272 asm/unistd_32.h:#define __NR_vserver 273 asm/unistd_32.h:#define __NR_mbind 274 asm/unistd_32.h:#define __NR_get_mempolicy 275 asm/unistd_32.h:#define __NR_set_mempolicy 276 asm/unistd_32.h:#define __NR_mq_open 277
asm/unistd_32.h:#define __NR_mq_unlink (__NR_mq_open+1) asm/unistd_32.h:#define __NR_mq_timedsend (__NR_mq_open+2) asm/unistd_32.h:#define __NR_mq_timedreceive (__NR_mq_open+3) asm/unistd_32.h:#define __NR_mq_notify (__NR_mq_open+4) asm/unistd_32.h:#define __NR_mq_getsetattr (__NR_mq_open+5) asm/unistd_32.h:#define __NR_kexec_load 283
asm/unistd_32.h:#define __NR_waitid 284 asm/unistd_32.h:/* #define __NR_sys_setaltroot 285 */ asm/unistd_32.h:#define __NR_add_key 286 asm/unistd_32.h:#define __NR_request_key 287 asm/unistd_32.h:#define __NR_keyctl 288 asm/unistd_32.h:#define __NR_ioprio_set 289 asm/unistd_32.h:#define __NR_ioprio_get 290 asm/unistd_32.h:#define __NR_inotify_init 291 asm/unistd_32.h:#define __NR_inotify_add_watch 292 asm/unistd_32.h:#define __NR_inotify_rm_watch 293 asm/unistd_32.h:#define __NR_migrate_pages 294 asm/unistd_32.h:#define __NR_openat 295 asm/unistd_32.h:#define __NR_mkdirat 296 asm/unistd_32.h:#define __NR_mknodat 297 asm/unistd_32.h:#define __NR_fchownat 298 asm/unistd_32.h:#define __NR_futimesat 299 asm/unistd_32.h:#define __NR_fstatat64 300 asm/unistd_32.h:#define __NR_unlinkat 301 asm/unistd_32.h:#define __NR_renameat 302 asm/unistd_32.h:#define __NR_linkat 303 asm/unistd_32.h:#define __NR_symlinkat 304 asm/unistd_32.h:#define __NR_readlinkat 305 asm/unistd_32.h:#define __NR_fchmodat 306 asm/unistd_32.h:#define __NR_faccessat 307 asm/unistd_32.h:#define __NR_pselect6 308 asm/unistd_32.h:#define __NR_ppoll 309 asm/unistd_32.h:#define __NR_unshare 310 asm/unistd_32.h:#define __NR_set_robust_list 311 asm/unistd_32.h:#define __NR_get_robust_list 312 asm/unistd_32.h:#define __NR_splice 313 asm/unistd_32.h:#define __NR_sync_file_range 314 asm/unistd_32.h:#define __NR_tee 315 asm/unistd_32.h:#define __NR_vmsplice 316 asm/unistd_32.h:#define __NR_move_pages 317
asm/unistd_32.h:#define __NR_getcpu 318 asm/unistd_32.h:#define __NR_epoll_pwait 319 asm/unistd_32.h:#define __NR_utimensat 320 asm/unistd_32.h:#define __NR_signalfd 321 asm/unistd_32.h:#define __NR_timerfd_create 322 asm/unistd_32.h:#define __NR_eventfd 323 asm/unistd_32.h:#define __NR_fallocate 324 asm/unistd_32.h:#define __NR_timerfd_settime 325 asm/unistd_32.h:#define __NR_timerfd_gettime 326 asm/unistd_32.h:#define __NR_signalfd4 327 asm/unistd_32.h:#define __NR_eventfd2 328 asm/unistd_32.h:#define __NR_epoll_create1 329 asm/unistd_32.h:#define __NR_dup3 330 asm/unistd_32.h:#define __NR_pipe2 331 asm/unistd_32.h:#define __NR_inotify_init1 332 asm/types.h:#define _ASM_X86_TYPES_H asm/boot.h:#define _ASM_X86_BOOT_H asm/boot.h:#define DEF_SYSSEG 0x1000 asm/boot.h:#define DEF_SYSSIZE 0x7F00
asm/boot.h:#define NORMAL_VGA 0xffff /* 80x25 mode */ asm/boot.h:#define EXTENDED_VGA 0xfffe /* 80x50 mode */
asm/boot.h:#define ASK_VGA 0xfffd /* ask for it at bootup */
asm/boot.h:#define LOAD_PHYSICAL_ADDR ((CONFIG_PHYSICAL_START \ asm/boot.h:#define BOOT_HEAP_SIZE 0x7000
asm/boot.h:#define BOOT_STACK_SIZE 0x4000 asm/boot.h:#define BOOT_HEAP_SIZE 0x4000 asm/boot.h:#define BOOT_STACK_SIZE 0x1000 asm/sigcontext.h:#define _ASM_X86_SIGCONTEXT_H
asm/sigcontext.h:#define FP_XSTATE_MAGIC1 0x46505853U asm/sigcontext.h:#define FP_XSTATE_MAGIC2 0x46505845U
asm/sigcontext.h:#define FP_XSTATE_MAGIC2_SIZE sizeof(FP_XSTATE_MAGIC2) asm/sigcontext.h:#define X86_FXSR_MAGIC 0x0000
asm/msr-index.h:#define _ASM_X86_MSR_INDEX_H
asm/msr-index.h:#define MSR_EFER 0xc0000080 /* extended feature r egister */
asm/msr-index.h:#define MSR_STAR 0xc0000081 /* legacy mode SYSCAL L target */
asm/msr-index.h:#define MSR_LSTAR 0xc0000082 /* long mode SYSCALL target */
asm/msr-index.h:#define MSR_CSTAR 0xc0000083 /* compat mode SYSCAL L target */
asm/msr-index.h:#define MSR_SYSCALL_MASK 0xc0000084 /* EFLAGS mask for sy scall */
asm/msr-index.h:#define MSR_FS_BASE 0xc0000100 /* 64bit FS base */ asm/msr-index.h:#define MSR_GS_BASE 0xc0000101 /* 64bit GS base */ asm/msr-index.h:#define MSR_KERNEL_GS_BASE 0xc0000102 /* SwapGS GS shadow * /
asm/msr-index.h:#define _EFER_SCE 0 /* SYSCALL/SYSRET */ asm/msr-index.h:#define _EFER_LME 8 /* Long mode enable */
asm/msr-index.h:#define _EFER_LMA 10 /* Long mode active (read-onl y) */
asm/msr-index.h:#define _EFER_NX 11 /* No execute enable */ asm/msr-index.h:#define EFER_SCE (1<<_EFER_SCE)
asm/msr-index.h:#define EFER_LME (1<<_EFER_LME) asm/msr-index.h:#define EFER_LMA (1<<_EFER_LMA) asm/msr-index.h:#define EFER_NX (1<<_EFER_NX) asm/msr-index.h:#define MSR_IA32_PERFCTR0 0x000000c1 asm/msr-index.h:#define MSR_IA32_PERFCTR1 0x000000c2 asm/msr-index.h:#define MSR_FSB_FREQ 0x000000cd
asm/msr-index.h:#define MSR_MTRRcap 0x000000fe asm/msr-index.h:#define MSR_IA32_BBL_CR_CTL 0x00000119 asm/msr-index.h:#define MSR_IA32_SYSENTER_CS 0x00000174 asm/msr-index.h:#define MSR_IA32_SYSENTER_ESP 0x00000175 asm/msr-index.h:#define MSR_IA32_SYSENTER_EIP 0x00000176 asm/msr-index.h:#define MSR_IA32_MCG_CAP 0x00000179 asm/msr-index.h:#define MSR_IA32_MCG_STATUS 0x0000017a asm/msr-index.h:#define MSR_IA32_MCG_CTL 0x0000017b asm/msr-index.h:#define MSR_IA32_PEBS_ENABLE 0x000003f1 asm/msr-index.h:#define MSR_IA32_DS_AREA 0x00000600 asm/msr-index.h:#define MSR_IA32_PERF_CAPABILITIES 0x00000345 asm/msr-index.h:#define MSR_MTRRfix64K_00000 0x00000250 asm/msr-index.h:#define MSR_MTRRfix16K_80000 0x00000258 asm/msr-index.h:#define MSR_MTRRfix16K_A0000 0x00000259 asm/msr-index.h:#define MSR_MTRRfix4K_C0000 0x00000268 asm/msr-index.h:#define MSR_MTRRfix4K_C8000 0x00000269 asm/msr-index.h:#define MSR_MTRRfix4K_D0000 0x0000026a asm/msr-index.h:#define MSR_MTRRfix4K_D8000 0x0000026b asm/msr-index.h:#define MSR_MTRRfix4K_E0000 0x0000026c asm/msr-index.h:#define MSR_MTRRfix4K_E8000 0x0000026d asm/msr-index.h:#define MSR_MTRRfix4K_F0000 0x0000026e asm/msr-index.h:#define MSR_MTRRfix4K_F8000 0x0000026f asm/msr-index.h:#define MSR_MTRRdefType 0x000002ff asm/msr-index.h:#define MSR_IA32_CR_PAT 0x00000277 asm/msr-index.h:#define MSR_IA32_DEBUGCTLMSR 0x000001d9 asm/msr-index.h:#define MSR_IA32_LASTBRANCHFROMIP 0x000001db asm/msr-index.h:#define MSR_IA32_LASTBRANCHTOIP 0x000001dc asm/msr-index.h:#define MSR_IA32_LASTINTFROMIP 0x000001dd asm/msr-index.h:#define MSR_IA32_LASTINTTOIP 0x000001de
asm/msr-index.h:#define _DEBUGCTLMSR_LBR 0 /* last branch recording */ asm/msr-index.h:#define _DEBUGCTLMSR_BTF 1 /* single-step on branches */ asm/msr-index.h:#define DEBUGCTLMSR_LBR (1UL << _DEBUGCTLMSR_LBR)
asm/msr-index.h:#define DEBUGCTLMSR_BTF (1UL << _DEBUGCTLMSR_BTF) asm/msr-index.h:#define MSR_IA32_MC0_CTL 0x00000400 asm/msr-index.h:#define MSR_IA32_MC0_STATUS 0x00000401 asm/msr-index.h:#define MSR_IA32_MC0_ADDR 0x00000402 asm/msr-index.h:#define MSR_IA32_MC0_MISC 0x00000403 asm/msr-index.h:#define MSR_P6_PERFCTR0 0x000000c1 asm/msr-index.h:#define MSR_P6_PERFCTR1 0x000000c2 asm/msr-index.h:#define MSR_P6_EVNTSEL0 0x00000186 asm/msr-index.h:#define MSR_P6_EVNTSEL1 0x00000187 asm/msr-index.h:#define MSR_AMD64_NB_CFG 0xc001001f asm/msr-index.h:#define MSR_AMD64_IBSFETCHCTL 0xc0011030 asm/msr-index.h:#define MSR_AMD64_IBSFETCHLINAD 0xc0011031 asm/msr-index.h:#define MSR_AMD64_IBSFETCHPHYSAD 0xc0011032 asm/msr-index.h:#define MSR_AMD64_IBSOPCTL 0xc0011033 asm/msr-index.h:#define MSR_AMD64_IBSOPRIP 0xc0011034 asm/msr-index.h:#define MSR_AMD64_IBSOPDATA 0xc0011035 asm/msr-index.h:#define MSR_AMD64_IBSOPDATA2 0xc0011036 asm/msr-index.h:#define MSR_AMD64_IBSOPDATA3 0xc0011037 asm/msr-index.h:#define MSR_AMD64_IBSDCLINAD 0xc0011038 asm/msr-index.h:#define MSR_AMD64_IBSDCPHYSAD 0xc0011039 asm/msr-index.h:#define MSR_AMD64_IBSCTL 0xc001103a asm/msr-index.h:#define MSR_FAM10H_MMIO_CONF_BASE 0xc0010058 asm/msr-index.h:#define FAM10H_MMIO_CONF_ENABLE (1<<0) asm/msr-index.h:#define FAM10H_MMIO_CONF_BUSRANGE_MASK 0xf asm/msr-index.h:#define FAM10H_MMIO_CONF_BUSRANGE_SHIFT 2 asm/msr-index.h:#define FAM10H_MMIO_CONF_BASE_MASK 0xfffffff asm/msr-index.h:#define FAM10H_MMIO_CONF_BASE_SHIFT 20
asm/msr-index.h:#define MSR_K8_TOP_MEM2 0xc001001d asm/msr-index.h:#define MSR_K8_SYSCFG 0xc0010010 asm/msr-index.h:#define MSR_K8_HWCR 0xc0010015 asm/msr-index.h:#define MSR_K8_INT_PENDING_MSG 0xc0010055 asm/msr-index.h:#define K8_INTP_C1E_ACTIVE_MASK 0x18000000 asm/msr-index.h:#define MSR_K8_TSEG_ADDR 0xc0010112
asm/msr-index.h:#define K8_MTRRFIXRANGE_DRAM_ENABLE 0x00040000 /* MtrrFixDra mEn bit */
asm/msr-index.h:#define K8_MTRRFIXRANGE_DRAM_MODIFY 0x00080000 /* MtrrFixDra mModEn bit */
asm/msr-index.h:#define K8_MTRR_RDMEM_WRMEM_MASK 0x18181818 /* Mask: RdMe m|WrMem */ asm/msr-index.h:#define MSR_K7_EVNTSEL0 0xc0010000 asm/msr-index.h:#define MSR_K7_PERFCTR0 0xc0010004 asm/msr-index.h:#define MSR_K7_EVNTSEL1 0xc0010001 asm/msr-index.h:#define MSR_K7_PERFCTR1 0xc0010005 asm/msr-index.h:#define MSR_K7_EVNTSEL2 0xc0010002 asm/msr-index.h:#define MSR_K7_PERFCTR2 0xc0010006 asm/msr-index.h:#define MSR_K7_EVNTSEL3 0xc0010003 asm/msr-index.h:#define MSR_K7_PERFCTR3 0xc0010007 asm/msr-index.h:#define MSR_K7_CLK_CTL 0xc001001b asm/msr-index.h:#define MSR_K7_HWCR 0xc0010015 asm/msr-index.h:#define MSR_K7_FID_VID_CTL 0xc0010041 asm/msr-index.h:#define MSR_K7_FID_VID_STATUS 0xc0010042 asm/msr-index.h:#define MSR_K6_EFER 0xc0000080 asm/msr-index.h:#define MSR_K6_STAR 0xc0000081 asm/msr-index.h:#define MSR_K6_WHCR 0xc0000082 asm/msr-index.h:#define MSR_K6_UWCCR 0xc0000085 asm/msr-index.h:#define MSR_K6_EPMR 0xc0000086 asm/msr-index.h:#define MSR_K6_PSOR 0xc0000087 asm/msr-index.h:#define MSR_K6_PFIR 0xc0000088 asm/msr-index.h:#define MSR_IDT_FCR1 0x00000107 asm/msr-index.h:#define MSR_IDT_FCR2 0x00000108 asm/msr-index.h:#define MSR_IDT_FCR3 0x00000109 asm/msr-index.h:#define MSR_IDT_FCR4 0x0000010a asm/msr-index.h:#define MSR_IDT_MCR0 0x00000110 asm/msr-index.h:#define MSR_IDT_MCR1 0x00000111 asm/msr-index.h:#define MSR_IDT_MCR2 0x00000112 asm/msr-index.h:#define MSR_IDT_MCR3 0x00000113 asm/msr-index.h:#define MSR_IDT_MCR4 0x00000114 asm/msr-index.h:#define MSR_IDT_MCR5 0x00000115 asm/msr-index.h:#define MSR_IDT_MCR6 0x00000116 asm/msr-index.h:#define MSR_IDT_MCR7 0x00000117 asm/msr-index.h:#define MSR_IDT_MCR_CTRL 0x00000120 asm/msr-index.h:#define MSR_VIA_FCR 0x00001107 asm/msr-index.h:#define MSR_VIA_LONGHAUL 0x0000110a asm/msr-index.h:#define MSR_VIA_RNG 0x0000110b asm/msr-index.h:#define MSR_VIA_BCR2 0x00001147 asm/msr-index.h:#define MSR_TMTA_LONGRUN_CTRL 0x80868010 asm/msr-index.h:#define MSR_TMTA_LONGRUN_FLAGS 0x80868011 asm/msr-index.h:#define MSR_TMTA_LRTI_READOUT 0x80868018 asm/msr-index.h:#define MSR_TMTA_LRTI_VOLT_MHZ 0x8086801a asm/msr-index.h:#define MSR_IA32_P5_MC_ADDR 0x00000000 asm/msr-index.h:#define MSR_IA32_P5_MC_TYPE 0x00000001 asm/msr-index.h:#define MSR_IA32_TSC 0x00000010 asm/msr-index.h:#define MSR_IA32_PLATFORM_ID 0x00000017 asm/msr-index.h:#define MSR_IA32_EBL_CR_POWERON 0x0000002a asm/msr-index.h:#define MSR_IA32_FEATURE_CONTROL 0x0000003a asm/msr-index.h:#define FEATURE_CONTROL_LOCKED (1<<0) asm/msr-index.h:#define FEATURE_CONTROL_VMXON_ENABLED (1<<2)
asm/msr-index.h:#define MSR_IA32_APICBASE 0x0000001b asm/msr-index.h:#define MSR_IA32_APICBASE_BSP (1<<8) asm/msr-index.h:#define MSR_IA32_APICBASE_ENABLE (1<<11) asm/msr-index.h:#define MSR_IA32_APICBASE_BASE (0xfffff<<12) asm/msr-index.h:#define MSR_IA32_UCODE_WRITE 0x00000079 asm/msr-index.h:#define MSR_IA32_UCODE_REV 0x0000008b asm/msr-index.h:#define MSR_IA32_PERF_STATUS 0x00000198 asm/msr-index.h:#define MSR_IA32_PERF_CTL 0x00000199 asm/msr-index.h:#define MSR_IA32_MPERF 0x000000e7 asm/msr-index.h:#define MSR_IA32_APERF 0x000000e8 asm/msr-index.h:#define MSR_IA32_THERM_CONTROL 0x0000019a asm/msr-index.h:#define MSR_IA32_THERM_INTERRUPT 0x0000019b asm/msr-index.h:#define MSR_IA32_THERM_STATUS 0x0000019c asm/msr-index.h:#define MSR_IA32_MISC_ENABLE 0x000001a0
asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_FAST_STRING (1ULL << 0) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_TCC (1ULL << 1) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_EMON (1ULL << 7) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_BTS_UNAVAIL (1ULL << 11) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_PEBS_UNAVAIL (1ULL << 12) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_ENHANCED_SPEEDSTEP (1ULL << 16) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_MWAIT (1ULL << 18) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_LIMIT_CPUID (1ULL << 22) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_XTPR_DISABLE (1ULL << 23) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_XD_DISABLE (1ULL << 34) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_X87_COMPAT (1ULL << 2) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_TM1 (1ULL << 3) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_SPLIT_LOCK_DISABLE (1ULL << 4) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_L3CACHE_DISABLE (1ULL << 6) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_SUPPRESS_LOCK (1ULL << 8) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_PREFETCH_DISABLE (1ULL << 9) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_FERR (1ULL << 10) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_FERR_MULTIPLEX (1ULL << 10) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_TM2 (1ULL << 13) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_ADJ_PREF_DISABLE (1ULL << 19) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_SPEEDSTEP_LOCK (1ULL << 20) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_L1D_CONTEXT (1ULL << 24) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_DCU_PREF_DISABLE (1ULL << 37) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_TURBO_DISABLE (1ULL << 38) asm/msr-index.h:#define MSR_IA32_MISC_ENABLE_IP_PREF_DISABLE (1ULL << 39) asm/msr-index.h:#define MSR_P6_EVNTSEL0 0x00000186 asm/msr-index.h:#define MSR_P6_EVNTSEL1 0x00000187 asm/msr-index.h:#define MSR_IA32_MCG_EAX 0x00000180 asm/msr-index.h:#define MSR_IA32_MCG_EBX 0x00000181 asm/msr-index.h:#define MSR_IA32_MCG_ECX 0x00000182 asm/msr-index.h:#define MSR_IA32_MCG_EDX 0x00000183 asm/msr-index.h:#define MSR_IA32_MCG_ESI 0x00000184 asm/msr-index.h:#define MSR_IA32_MCG_EDI 0x00000185 asm/msr-index.h:#define MSR_IA32_MCG_EBP 0x00000186 asm/msr-index.h:#define MSR_IA32_MCG_ESP 0x00000187 asm/msr-index.h:#define MSR_IA32_MCG_EFLAGS 0x00000188 asm/msr-index.h:#define MSR_IA32_MCG_EIP 0x00000189 asm/msr-index.h:#define MSR_IA32_MCG_RESERVED 0x0000018a asm/msr-index.h:#define MSR_P4_BPU_PERFCTR0 0x00000300 asm/msr-index.h:#define MSR_P4_BPU_PERFCTR1 0x00000301 asm/msr-index.h:#define MSR_P4_BPU_PERFCTR2 0x00000302 asm/msr-index.h:#define MSR_P4_BPU_PERFCTR3 0x00000303 asm/msr-index.h:#define MSR_P4_MS_PERFCTR0 0x00000304 asm/msr-index.h:#define MSR_P4_MS_PERFCTR1 0x00000305 asm/msr-index.h:#define MSR_P4_MS_PERFCTR2 0x00000306 asm/msr-index.h:#define MSR_P4_MS_PERFCTR3 0x00000307
asm/msr-index.h:#define MSR_P4_FLAME_PERFCTR0 0x00000308 asm/msr-index.h:#define MSR_P4_FLAME_PERFCTR1 0x00000309 asm/msr-index.h:#define MSR_P4_FLAME_PERFCTR2 0x0000030a asm/msr-index.h:#define MSR_P4_FLAME_PERFCTR3 0x0000030b asm/msr-index.h:#define MSR_P4_IQ_PERFCTR0 0x0000030c asm/msr-index.h:#define MSR_P4_IQ_PERFCTR1 0x0000030d asm/msr-index.h:#define MSR_P4_IQ_PERFCTR2 0x0000030e asm/msr-index.h:#define MSR_P4_IQ_PERFCTR3 0x0000030f asm/msr-index.h:#define MSR_P4_IQ_PERFCTR4 0x00000310 asm/msr-index.h:#define MSR_P4_IQ_PERFCTR5 0x00000311 asm/msr-index.h:#define MSR_P4_BPU_CCCR0 0x00000360 asm/msr-index.h:#define MSR_P4_BPU_CCCR1 0x00000361 asm/msr-index.h:#define MSR_P4_BPU_CCCR2 0x00000362 asm/msr-index.h:#define MSR_P4_BPU_CCCR3 0x00000363 asm/msr-index.h:#define MSR_P4_MS_CCCR0 0x00000364 asm/msr-index.h:#define MSR_P4_MS_CCCR1 0x00000365 asm/msr-index.h:#define MSR_P4_MS_CCCR2 0x00000366 asm/msr-index.h:#define MSR_P4_MS_CCCR3 0x00000367 asm/msr-index.h:#define MSR_P4_FLAME_CCCR0 0x00000368 asm/msr-index.h:#define MSR_P4_FLAME_CCCR1 0x00000369 asm/msr-index.h:#define MSR_P4_FLAME_CCCR2 0x0000036a asm/msr-index.h:#define MSR_P4_FLAME_CCCR3 0x0000036b asm/msr-index.h:#define MSR_P4_IQ_CCCR0 0x0000036c asm/msr-index.h:#define MSR_P4_IQ_CCCR1 0x0000036d asm/msr-index.h:#define MSR_P4_IQ_CCCR2 0x0000036e asm/msr-index.h:#define MSR_P4_IQ_CCCR3 0x0000036f asm/msr-index.h:#define MSR_P4_IQ_CCCR4 0x00000370 asm/msr-index.h:#define MSR_P4_IQ_CCCR5 0x00000371 asm/msr-index.h:#define MSR_P4_ALF_ESCR0 0x000003ca asm/msr-index.h:#define MSR_P4_ALF_ESCR1 0x000003cb asm/msr-index.h:#define MSR_P4_BPU_ESCR0 0x000003b2 asm/msr-index.h:#define MSR_P4_BPU_ESCR1 0x000003b3 asm/msr-index.h:#define MSR_P4_BSU_ESCR0 0x000003a0 asm/msr-index.h:#define MSR_P4_BSU_ESCR1 0x000003a1 asm/msr-index.h:#define MSR_P4_CRU_ESCR0 0x000003b8 asm/msr-index.h:#define MSR_P4_CRU_ESCR1 0x000003b9 asm/msr-index.h:#define MSR_P4_CRU_ESCR2 0x000003cc asm/msr-index.h:#define MSR_P4_CRU_ESCR3 0x000003cd asm/msr-index.h:#define MSR_P4_CRU_ESCR4 0x000003e0 asm/msr-index.h:#define MSR_P4_CRU_ESCR5 0x000003e1 asm/msr-index.h:#define MSR_P4_DAC_ESCR0 0x000003a8 asm/msr-index.h:#define MSR_P4_DAC_ESCR1 0x000003a9 asm/msr-index.h:#define MSR_P4_FIRM_ESCR0 0x000003a4 asm/msr-index.h:#define MSR_P4_FIRM_ESCR1 0x000003a5 asm/msr-index.h:#define MSR_P4_FLAME_ESCR0 0x000003a6 asm/msr-index.h:#define MSR_P4_FLAME_ESCR1 0x000003a7 asm/msr-index.h:#define MSR_P4_FSB_ESCR0 0x000003a2 asm/msr-index.h:#define MSR_P4_FSB_ESCR1 0x000003a3 asm/msr-index.h:#define MSR_P4_IQ_ESCR0 0x000003ba asm/msr-index.h:#define MSR_P4_IQ_ESCR1 0x000003bb asm/msr-index.h:#define MSR_P4_IS_ESCR0 0x000003b4 asm/msr-index.h:#define MSR_P4_IS_ESCR1 0x000003b5 asm/msr-index.h:#define MSR_P4_ITLB_ESCR0 0x000003b6 asm/msr-index.h:#define MSR_P4_ITLB_ESCR1 0x000003b7 asm/msr-index.h:#define MSR_P4_IX_ESCR0 0x000003c8 asm/msr-index.h:#define MSR_P4_IX_ESCR1 0x000003c9 asm/msr-index.h:#define MSR_P4_MOB_ESCR0 0x000003aa asm/msr-index.h:#define MSR_P4_MOB_ESCR1 0x000003ab asm/msr-index.h:#define MSR_P4_MS_ESCR0 0x000003c0 asm/msr-index.h:#define MSR_P4_MS_ESCR1 0x000003c1
asm/msr-index.h:#define MSR_P4_PMH_ESCR0 0x000003ac asm/msr-index.h:#define MSR_P4_PMH_ESCR1 0x000003ad asm/msr-index.h:#define MSR_P4_RAT_ESCR0 0x000003bc asm/msr-index.h:#define MSR_P4_RAT_ESCR1 0x000003bd asm/msr-index.h:#define MSR_P4_SAAT_ESCR0 0x000003ae asm/msr-index.h:#define MSR_P4_SAAT_ESCR1 0x000003af asm/msr-index.h:#define MSR_P4_SSU_ESCR0 0x000003be
asm/msr-index.h:#define MSR_P4_SSU_ESCR1 0x000003bf /* guess: not in manual */ asm/msr-index.h:#define MSR_P4_TBPU_ESCR0 0x000003c2 asm/msr-index.h:#define MSR_P4_TBPU_ESCR1 0x000003c3 asm/msr-index.h:#define MSR_P4_TC_ESCR0 0x000003c4 asm/msr-index.h:#define MSR_P4_TC_ESCR1 0x000003c5 asm/msr-index.h:#define MSR_P4_U2L_ESCR0 0x000003b0 asm/msr-index.h:#define MSR_P4_U2L_ESCR1 0x000003b1 asm/msr-index.h:#define MSR_CORE_PERF_FIXED_CTR0 0x00000309 asm/msr-index.h:#define MSR_CORE_PERF_FIXED_CTR1 0x0000030a asm/msr-index.h:#define MSR_CORE_PERF_FIXED_CTR2 0x0000030b asm/msr-index.h:#define MSR_CORE_PERF_FIXED_CTR_CTRL 0x0000038d asm/msr-index.h:#define MSR_CORE_PERF_GLOBAL_STATUS 0x0000038e asm/msr-index.h:#define MSR_CORE_PERF_GLOBAL_CTRL 0x0000038f asm/msr-index.h:#define MSR_CORE_PERF_GLOBAL_OVF_CTRL 0x00000390 asm/msr-index.h:#define MSR_GEODE_BUSCONT_CONF0 0x00001900 asm/msr-index.h:#define MSR_IA32_VMX_BASIC 0x00000480 asm/msr-index.h:#define MSR_IA32_VMX_PINBASED_CTLS 0x00000481 asm/msr-index.h:#define MSR_IA32_VMX_PROCBASED_CTLS 0x00000482 asm/msr-index.h:#define MSR_IA32_VMX_EXIT_CTLS 0x00000483 asm/msr-index.h:#define MSR_IA32_VMX_ENTRY_CTLS 0x00000484 asm/msr-index.h:#define MSR_IA32_VMX_MISC 0x00000485 asm/msr-index.h:#define MSR_IA32_VMX_CR0_FIXED0 0x00000486 asm/msr-index.h:#define MSR_IA32_VMX_CR0_FIXED1 0x00000487 asm/msr-index.h:#define MSR_IA32_VMX_CR4_FIXED0 0x00000488 asm/msr-index.h:#define MSR_IA32_VMX_CR4_FIXED1 0x00000489 asm/msr-index.h:#define MSR_IA32_VMX_VMCS_ENUM 0x0000048a asm/msr-index.h:#define MSR_IA32_VMX_PROCBASED_CTLS2 0x0000048b asm/msr-index.h:#define MSR_IA32_VMX_EPT_VPID_CAP 0x0000048c asm/processor-flags.h:#define _ASM_X86_PROCESSOR_FLAGS_H
asm/processor-flags.h:#define X86_EFLAGS_CF 0x00000001 /* Carry Flag */ asm/processor-flags.h:#define X86_EFLAGS_PF 0x00000004 /* Parity Flag */ asm/processor-flags.h:#define X86_EFLAGS_AF 0x00000010 /* Auxillary carry Fl ag */
asm/processor-flags.h:#define X86_EFLAGS_ZF 0x00000040 /* Zero Flag */ asm/processor-flags.h:#define X86_EFLAGS_SF 0x00000080 /* Sign Flag */ asm/processor-flags.h:#define X86_EFLAGS_TF 0x00000100 /* Trap Flag */ asm/processor-flags.h:#define X86_EFLAGS_IF 0x00000200 /* Interrupt Flag */ asm/processor-flags.h:#define X86_EFLAGS_DF 0x00000400 /* Direction Flag */ asm/processor-flags.h:#define X86_EFLAGS_OF 0x00000800 /* Overflow Flag */ asm/processor-flags.h:#define X86_EFLAGS_IOPL 0x00003000 /* IOPL mask */ asm/processor-flags.h:#define X86_EFLAGS_NT 0x00004000 /* Nested Task */ asm/processor-flags.h:#define X86_EFLAGS_RF 0x00010000 /* Resume Flag */ asm/processor-flags.h:#define X86_EFLAGS_VM 0x00020000 /* Virtual Mode */ asm/processor-flags.h:#define X86_EFLAGS_AC 0x00040000 /* Alignment Check */ asm/processor-flags.h:#define X86_EFLAGS_VIF 0x00080000 /* Virtual Interrupt Flag */
asm/processor-flags.h:#define X86_EFLAGS_VIP 0x00100000 /* Virtual Interrupt Pending */
asm/processor-flags.h:#define X86_EFLAGS_ID 0x00200000 /* CPUID detection fl ag */
asm/processor-flags.h:#define X86_CR0_PE 0x00000001 /* Protection Enable */
asm/processor-flags.h:#define X86_CR0_MP 0x00000002 /* Monitor Coprocesso r */
asm/processor-flags.h:#define X86_CR0_EM 0x00000004 /* Emulation */ asm/processor-flags.h:#define X86_CR0_TS 0x00000008 /* Task Switched */ asm/processor-flags.h:#define X86_CR0_ET 0x00000010 /* Extension Type */ asm/processor-flags.h:#define X86_CR0_NE 0x00000020 /* Numeric Error */ asm/processor-flags.h:#define X86_CR0_WP 0x00010000 /* Write Protect */ asm/processor-flags.h:#define X86_CR0_AM 0x00040000 /* Alignment Mask */ asm/processor-flags.h:#define X86_CR0_NW 0x20000000 /* Not Write-through */
asm/processor-flags.h:#define X86_CR0_CD 0x40000000 /* Cache Disable */ asm/processor-flags.h:#define X86_CR0_PG 0x80000000 /* Paging */
asm/processor-flags.h:#define X86_CR3_PWT 0x00000008 /* Page Write Through */
asm/processor-flags.h:#define X86_CR3_PCD 0x00000010 /* Page Cache Disable */
asm/processor-flags.h:#define X86_CR4_VME 0x00000001 /* enable vm86 extens ions */
asm/processor-flags.h:#define X86_CR4_PVI 0x00000002 /* virtual interrupts flag enable */
asm/processor-flags.h:#define X86_CR4_TSD 0x00000004 /* disable time stamp at ipl 3 */
asm/processor-flags.h:#define X86_CR4_DE 0x00000008 /* enable debugging e xtensions */
asm/processor-flags.h:#define X86_CR4_PSE 0x00000010 /* enable page size e xtensions */
asm/processor-flags.h:#define X86_CR4_PAE 0x00000020 /* enable physical ad dress extensions */
asm/processor-flags.h:#define X86_CR4_MCE 0x00000040 /* Machine check enab le */
asm/processor-flags.h:#define X86_CR4_PGE 0x00000080 /* enable global page s */
asm/processor-flags.h:#define X86_CR4_PCE 0x00000100 /* enable performance counters at ipl 3 */
asm/processor-flags.h:#define X86_CR4_OSFXSR 0x00000200 /* enable fast FPU sa ve and restore */
asm/processor-flags.h:#define X86_CR4_OSXMMEXCPT 0x00000400 /* enable unmasked S SE exceptions */
asm/processor-flags.h:#define X86_CR4_VMXE 0x00002000 /* enable VMX virtual ization */
asm/processor-flags.h:#define X86_CR4_OSXSAVE 0x00040000 /* enable xsave and xre store */
asm/processor-flags.h:#define X86_CR8_TPR 0x0000000F /* task priority regi ster */ asm/processor-flags.h:#define CX86_PCR0 0x20 asm/processor-flags.h:#define CX86_GCR 0xb8 asm/processor-flags.h:#define CX86_CCR0 0xc0 asm/processor-flags.h:#define CX86_CCR1 0xc1 asm/processor-flags.h:#define CX86_CCR2 0xc2 asm/processor-flags.h:#define CX86_CCR3 0xc3 asm/processor-flags.h:#define CX86_CCR4 0xe8 asm/processor-flags.h:#define CX86_CCR5 0xe9 asm/processor-flags.h:#define CX86_CCR6 0xea asm/processor-flags.h:#define CX86_CCR7 0xeb asm/processor-flags.h:#define CX86_PCR1 0xf0 asm/processor-flags.h:#define CX86_DIR0 0xfe asm/processor-flags.h:#define CX86_DIR1 0xff
asm/processor-flags.h:#define CX86_ARR_BASE 0xc4 asm/processor-flags.h:#define CX86_RCR_BASE 0xdc asm/mtrr.h:#define _ASM_X86_MTRR_H
asm/mtrr.h:#define MTRRIOC_ADD_ENTRY _IOW(MTRR_IOCTL_BASE, 0, struct mtr r_sentry)
asm/mtrr.h:#define MTRRIOC_SET_ENTRY _IOW(MTRR_IOCTL_BASE, 1, struct mtr r_sentry)
asm/mtrr.h:#define MTRRIOC_DEL_ENTRY _IOW(MTRR_IOCTL_BASE, 2, struct mtr r_sentry)
asm/mtrr.h:#define MTRRIOC_GET_ENTRY _IOWR(MTRR_IOCTL_BASE, 3, struct mtr r_gentry)
asm/mtrr.h:#define MTRRIOC_KILL_ENTRY _IOW(MTRR_IOCTL_BASE, 4, struct mtr r_sentry)
asm/mtrr.h:#define MTRRIOC_ADD_PAGE_ENTRY _IOW(MTRR_IOCTL_BASE, 5, struct mtr r_sentry)
asm/mtrr.h:#define MTRRIOC_SET_PAGE_ENTRY _IOW(MTRR_IOCTL_BASE, 6, struct mtr r_sentry)
asm/mtrr.h:#define MTRRIOC_DEL_PAGE_ENTRY _IOW(MTRR_IOCTL_BASE, 7, struct mtr r_sentry)
asm/mtrr.h:#define MTRRIOC_GET_PAGE_ENTRY _IOWR(MTRR_IOCTL_BASE, 8, struct mtr r_gentry)
asm/mtrr.h:#define MTRRIOC_KILL_PAGE_ENTRY _IOW(MTRR_IOCTL_BASE, 9, struct mtr r_sentry) asm/mtrr.h:#define MTRR_TYPE_UNCACHABLE 0 asm/mtrr.h:#define MTRR_TYPE_WRCOMB 1 asm/mtrr.h:/*#define MTRR_TYPE_ 2*/ asm/mtrr.h:/*#define MTRR_TYPE_ 3*/ asm/mtrr.h:#define MTRR_TYPE_WRTHROUGH 4 asm/mtrr.h:#define MTRR_TYPE_WRPROT 5 asm/mtrr.h:#define MTRR_TYPE_WRBACK 6 asm/mtrr.h:#define MTRR_NUM_TYPES 7 asm/msr.h:#define _ASM_X86_MSR_H asm/statfs.h:#define _ASM_X86_STATFS_H
asm/statfs.h:#define ARCH_PACK_COMPAT_STATFS64 __attribute__((packed,aligned(4)) )
asm/vsyscall.h:#define _ASM_X86_VSYSCALL_H
asm/vsyscall.h:#define VSYSCALL_START (-10UL << 20) asm/vsyscall.h:#define VSYSCALL_SIZE 1024
asm/vsyscall.h:#define VSYSCALL_END (-2UL << 20) asm/vsyscall.h:#define VSYSCALL_MAPPED_PAGES 1
asm/vsyscall.h:#define VSYSCALL_ADDR(vsyscall_nr) (VSYSCALL_START+VSYSCALL_SIZE* (vsyscall_nr))
asm/debugreg.h:#define _ASM_X86_DEBUGREG_H
asm/debugreg.h:#define DR_FIRSTADDR 0 /* u_debugreg[DR_FIRSTADDR] */ asm/debugreg.h:#define DR_LASTADDR 3 /* u_debugreg[DR_LASTADDR] */ asm/debugreg.h:#define DR_STATUS 6 /* u_debugreg[DR_STATUS] */ asm/debugreg.h:#define DR_CONTROL 7 /* u_debugreg[DR_CONTROL] */ asm/debugreg.h:#define DR_TRAP0 (0x1) /* db0 */
asm/debugreg.h:#define DR_TRAP1 (0x2) /* db1 */ asm/debugreg.h:#define DR_TRAP2 (0x4) /* db2 */ asm/debugreg.h:#define DR_TRAP3 (0x8) /* db3 */
asm/debugreg.h:#define DR_STEP (0x4000) /* single-step */ asm/debugreg.h:#define DR_SWITCH (0x8000) /* task switch */
asm/debugreg.h:#define DR_CONTROL_SHIFT 16 /* Skip this many bits in ctl registe r */
asm/debugreg.h:#define DR_CONTROL_SIZE 4 /* 4 control bits per register */ asm/debugreg.h:#define DR_RW_EXECUTE (0x0) /* Settings for the access types to trap on */
asm/debugreg.h:#define DR_RW_WRITE (0x1) asm/debugreg.h:#define DR_RW_READ (0x3)
asm/debugreg.h:#define DR_LEN_1 (0x0) /* Settings for data length to trap on */ asm/debugreg.h:#define DR_LEN_2 (0x4)
asm/debugreg.h:#define DR_LEN_8 (0x8)
asm/debugreg.h:#define DR_LOCAL_ENABLE_SHIFT 0 /* Extra shift to the local en able bit */
asm/debugreg.h:#define DR_GLOBAL_ENABLE_SHIFT 1 /* Extra shift to the global e nable bit */
asm/debugreg.h:#define DR_ENABLE_SIZE 2 /* 2 enable bits per register */
asm/debugreg.h:#define DR_LOCAL_ENABLE_MASK (0x55) /* Set local bits for all 4 regs */
asm/debugreg.h:#define DR_GLOBAL_ENABLE_MASK (0xAA) /* Set global bits for all 4 regs */
asm/debugreg.h:#define DR_CONTROL_RESERVED (0xFC00) /* Reserved by Intel */ asm/debugreg.h:#define DR_CONTROL_RESERVED (0xFFFFFFFF0000FC00UL) /* Reserved */ asm/debugreg.h:#define DR_LOCAL_SLOWDOWN (0x100) /* Local slow the pipeline */ asm/debugreg.h:#define DR_GLOBAL_SLOWDOWN (0x200) /* Global slow the pipeline * / asm/shmbuf.h:#define _ASM_X86_SHMBUF_H asm/socket.h:#define _ASM_X86_SOCKET_H asm/socket.h:#define SOL_SOCKET 1 asm/socket.h:#define SO_DEBUG 1 asm/socket.h:#define SO_REUSEADDR 2 asm/socket.h:#define SO_TYPE 3 asm/socket.h:#define SO_ERROR 4 asm/socket.h:#define SO_DONTROUTE 5 asm/socket.h:#define SO_BROADCAST 6 asm/socket.h:#define SO_SNDBUF 7 asm/socket.h:#define SO_RCVBUF 8 asm/socket.h:#define SO_SNDBUFFORCE 32 asm/socket.h:#define SO_RCVBUFFORCE 33 asm/socket.h:#define SO_KEEPALIVE 9 asm/socket.h:#define SO_OOBINLINE 10 asm/socket.h:#define SO_NO_CHECK 11 asm/socket.h:#define SO_PRIORITY 12 asm/socket.h:#define SO_LINGER 13 asm/socket.h:#define SO_BSDCOMPAT 14
asm/socket.h:/* To add :#define SO_REUSEPORT 15 */ asm/socket.h:#define SO_PASSCRED 16 asm/socket.h:#define SO_PEERCRED 17 asm/socket.h:#define SO_RCVLOWAT 18 asm/socket.h:#define SO_SNDLOWAT 19 asm/socket.h:#define SO_RCVTIMEO 20 asm/socket.h:#define SO_SNDTIMEO 21 asm/socket.h:#define SO_SECURITY_AUTHENTICATION 22 asm/socket.h:#define SO_SECURITY_ENCRYPTION_TRANSPORT 23 asm/socket.h:#define SO_SECURITY_ENCRYPTION_NETWORK 24 asm/socket.h:#define SO_BINDTODEVICE 25 asm/socket.h:#define SO_ATTACH_FILTER 26 asm/socket.h:#define SO_DETACH_FILTER 27 asm/socket.h:#define SO_PEERNAME 28 asm/socket.h:#define SO_TIMESTAMP 29
asm/socket.h:#define SCM_TIMESTAMP SO_TIMESTAMP asm/socket.h:#define SO_ACCEPTCONN 30
asm/socket.h:#define SO_PEERSEC 31 asm/socket.h:#define SO_PASSSEC 34
asm/socket.h:#define SO_TIMESTAMPNS 35
asm/socket.h:#define SCM_TIMESTAMPNS SO_TIMESTAMPNS
asm/socket.h:#define SO_MARK 36
asm/ptrace-abi.h:#define _ASM_X86_PTRACE_ABI_H asm/ptrace-abi.h:#define EBX 0
asm/ptrace-abi.h:#define EDX 2 asm/ptrace-abi.h:#define ESI 3 asm/ptrace-abi.h:#define EDI 4 asm/ptrace-abi.h:#define EBP 5 asm/ptrace-abi.h:#define EAX 6 asm/ptrace-abi.h:#define DS 7 asm/ptrace-abi.h:#define ES 8 asm/ptrace-abi.h:#define FS 9 asm/ptrace-abi.h:#define GS 10 asm/ptrace-abi.h:#define ORIG_EAX 11 asm/ptrace-abi.h:#define EIP 12 asm/ptrace-abi.h:#define CS 13 asm/ptrace-abi.h:#define EFL 14 asm/ptrace-abi.h:#define UESP 15 asm/ptrace-abi.h:#define SS 16 asm/ptrace-abi.h:#define FRAME_SIZE 17 asm/ptrace-abi.h:#define R15 0 asm/ptrace-abi.h:#define R14 8 asm/ptrace-abi.h:#define R13 16 asm/ptrace-abi.h:#define R12 24 asm/ptrace-abi.h:#define RBP 32 asm/ptrace-abi.h:#define RBX 40 asm/ptrace-abi.h:#define R11 48 asm/ptrace-abi.h:#define R10 56 asm/ptrace-abi.h:#define R9 64 asm/ptrace-abi.h:#define R8 72 asm/ptrace-abi.h:#define RAX 80 asm/ptrace-abi.h:#define RCX 88 asm/ptrace-abi.h:#define RDX 96 asm/ptrace-abi.h:#define RSI 104 asm/ptrace-abi.h:#define RDI 112
asm/ptrace-abi.h:#define ORIG_RAX 120 /* = ERROR */ asm/ptrace-abi.h:#define RIP 128 asm/ptrace-abi.h:#define CS 136 asm/ptrace-abi.h:#define EFLAGS 144 asm/ptrace-abi.h:#define RSP 152 asm/ptrace-abi.h:#define SS 160 asm/ptrace-abi.h:#define ARGOFFSET R11 asm/ptrace-abi.h:#define FRAME_SIZE 168 asm/ptrace-abi.h:#define PTRACE_GETREGS 12 asm/ptrace-abi.h:#define PTRACE_SETREGS 13 asm/ptrace-abi.h:#define PTRACE_GETFPREGS 14 asm/ptrace-abi.h:#define PTRACE_SETFPREGS 15 asm/ptrace-abi.h:#define PTRACE_GETFPXREGS 18 asm/ptrace-abi.h:#define PTRACE_SETFPXREGS 19 asm/ptrace-abi.h:#define PTRACE_OLDSETOPTIONS 21 asm/ptrace-abi.h:#define PTRACE_GET_THREAD_AREA 25 asm/ptrace-abi.h:#define PTRACE_SET_THREAD_AREA 26 asm/ptrace-abi.h:#define PTRACE_SYSEMU 31 asm/ptrace-abi.h:#define PTRACE_SYSEMU_SINGLESTEP 32
asm/ptrace-abi.h:#define PTRACE_SINGLEBLOCK 33 /* resume execution unti l next branch */
asm/ptrace-abi.h:#define PTRACE_BTS_O_TRACE 0x1 /* branch trace */
asm/ptrace-abi.h:#define PTRACE_BTS_O_SCHED 0x2 /* scheduling events w/ jiff ies */
asm/ptrace-abi.h:#define PTRACE_BTS_O_SIGNAL 0x4 /* send SIG<signal> on buff er overflow
asm/ptrace-abi.h:#define PTRACE_BTS_O_ALLOC 0x8 /* (re)allocate buffer */ asm/ptrace-abi.h:#define PTRACE_BTS_CONFIG 40
asm/ptrace-abi.h:#define PTRACE_BTS_SIZE 42 asm/ptrace-abi.h:#define PTRACE_BTS_GET 43 asm/ptrace-abi.h:#define PTRACE_BTS_CLEAR 44 asm/ptrace-abi.h:#define PTRACE_BTS_DRAIN 45 asm/stat.h:#define _ASM_X86_STAT_H asm/stat.h:#define STAT_HAVE_NSEC 1 asm/stat.h:#define STAT64_HAS_BROKEN_ST_INO 1 asm/sigcontext32.h:#define _ASM_X86_SIGCONTEXT32_H asm/sigcontext32.h:#define X86_FXSR_MAGIC 0x0000 asm/posix_types_32.h:#define _ASM_X86_POSIX_TYPES_32_H asm/byteorder.h:#define _ASM_X86_BYTEORDER_H
asm/byteorder.h:#define __arch__swab64(x) ___arch__swab64(x) asm/byteorder.h:#define __arch__swab32(x) ___arch__swab32(x) asm/byteorder.h:#define __BYTEORDER_HAS_U64__ asm/ist.h:#define _ASM_X86_IST_H asm/ldt.h:#define _ASM_X86_LDT_H asm/ldt.h:#define LDT_ENTRIES 8192 asm/ldt.h:#define LDT_ENTRY_SIZE 8 asm/ldt.h:#define MODIFY_LDT_CONTENTS_DATA 0 asm/ldt.h:#define MODIFY_LDT_CONTENTS_STACK 1 asm/ldt.h:#define MODIFY_LDT_CONTENTS_CODE 2 asm/msgbuf.h:#define _ASM_X86_MSGBUF_H asm/setup.h:#define _ASM_X86_SETUP_H asm/setup.h:#define COMMAND_LINE_SIZE 2048
asm/setup.h:#define paravirt_post_allocator_init() do {} while (0) asm/termios.h:#define _ASM_X86_TERMIOS_H asm/termios.h:#define NCC 8 asm/termios.h:#define TIOCM_LE 0x001 asm/termios.h:#define TIOCM_DTR 0x002 asm/termios.h:#define TIOCM_RTS 0x004 asm/termios.h:#define TIOCM_ST 0x008 asm/termios.h:#define TIOCM_SR 0x010 asm/termios.h:#define TIOCM_CTS 0x020 asm/termios.h:#define TIOCM_CAR 0x040 asm/termios.h:#define TIOCM_RNG 0x080 asm/termios.h:#define TIOCM_DSR 0x100 asm/termios.h:#define TIOCM_CD TIOCM_CAR asm/termios.h:#define TIOCM_RI TIOCM_RNG asm/termios.h:#define TIOCM_OUT1 0x2000 asm/termios.h:#define TIOCM_OUT2 0x4000 asm/termios.h:#define TIOCM_LOOP 0x8000 asm/a.out.h:#define _ASM_X86_A_OUT_H
asm/a.out.h:#define N_TRSIZE(a) ((a).a_trsize) asm/a.out.h:#define N_DRSIZE(a) ((a).a_drsize)
asm/a.out.h:#define N_SYMSIZE(a) ((a).a_syms) asm/siginfo.h:#define _ASM_X86_SIGINFO_H
asm/ioctls.h:#define _ASM_X86_IOCTLS_H
asm/ioctls.h:#define TCGETS 0x5401
asm/ioctls.h:#define TCSETS 0x5402 /* Clashes with SNDCTL_TMR_START sound ioctl */ asm/ioctls.h:#define TCSETSW 0x5403 asm/ioctls.h:#define TCSETSF 0x5404 asm/ioctls.h:#define TCGETA 0x5405 asm/ioctls.h:#define TCSETA 0x5406 asm/ioctls.h:#define TCSETAW 0x5407 asm/ioctls.h:#define TCSETAF 0x5408 asm/ioctls.h:#define TCSBRK 0x5409 asm/ioctls.h:#define TCXONC 0x540A asm/ioctls.h:#define TCFLSH 0x540B asm/ioctls.h:#define TIOCEXCL 0x540C
asm/ioctls.h:#define TIOCNXCL 0x540D asm/ioctls.h:#define TIOCSCTTY 0x540E asm/ioctls.h:#define TIOCGPGRP 0x540F asm/ioctls.h:#define TIOCSPGRP 0x5410 asm/ioctls.h:#define TIOCOUTQ 0x5411 asm/ioctls.h:#define TIOCSTI 0x5412 asm/ioctls.h:#define TIOCGWINSZ 0x5413 asm/ioctls.h:#define TIOCSWINSZ 0x5414 asm/ioctls.h:#define TIOCMGET 0x5415 asm/ioctls.h:#define TIOCMBIS 0x5416 asm/ioctls.h:#define TIOCMBIC 0x5417 asm/ioctls.h:#define TIOCMSET 0x5418 asm/ioctls.h:#define TIOCGSOFTCAR 0x5419 asm/ioctls.h:#define TIOCSSOFTCAR 0x541A asm/ioctls.h:#define FIONREAD 0x541B
asm/ioctls.h:#define TIOCINQ FIONREAD asm/ioctls.h:#define TIOCLINUX 0x541C
asm/ioctls.h:#define TIOCCONS 0x541D
asm/ioctls.h:#define TIOCGSERIAL 0x541E asm/ioctls.h:#define TIOCSSERIAL 0x541F asm/ioctls.h:#define TIOCPKT 0x5420 asm/ioctls.h:#define FIONBIO 0x5421 asm/ioctls.h:#define TIOCNOTTY 0x5422 asm/ioctls.h:#define TIOCSETD 0x5423 asm/ioctls.h:#define TIOCGETD 0x5424
asm/ioctls.h:#define TCSBRKP 0x5425 /* Needed for POSIX tcsendbreak( ) */
asm/ioctls.h:/* #define TIOCTTYGSTRUCT 0x5426 - Former debugging-only ioctl */ asm/ioctls.h:#define TIOCSBRK 0x5427 /* BSD compatibility */
asm/ioctls.h:#define TIOCCBRK 0x5428 /* BSD compatibility */
asm/ioctls.h:#define TIOCGSID 0x5429 /* Return the session ID of FD */ asm/ioctls.h:#define TCGETS2 _IOR('T', 0x2A, struct termios2) asm/ioctls.h:#define TCSETS2 _IOW('T', 0x2B, struct termios2) asm/ioctls.h:#define TCSETSW2 _IOW('T', 0x2C, struct termios2)
asm/ioctls.h:#define TCSETSF2 _IOW('T', 0x2D, struct termios2) asm/ioctls.h:#define TIOCGRS485 0x542E
asm/ioctls.h:#define TIOCSRS485 0x542F
asm/ioctls.h:#define TIOCGPTN _IOR('T', 0x30, unsigned int)
asm/ioctls.h:#define TIOCSPTLCK _IOW('T', 0x31, int) /* Lock/unlock Pty */ asm/ioctls.h:#define TCGETX 0x5432 /* SYS5 TCGETX compatibility */ asm/ioctls.h:#define TCSETX 0x5433 asm/ioctls.h:#define TCSETXF 0x5434 asm/ioctls.h:#define TCSETXW 0x5435 asm/ioctls.h:#define FIONCLEX 0x5450 asm/ioctls.h:#define FIOCLEX 0x5451 asm/ioctls.h:#define FIOASYNC 0x5452 asm/ioctls.h:#define TIOCSERCONFIG 0x5453 asm/ioctls.h:#define TIOCSERGWILD 0x5454 asm/ioctls.h:#define TIOCSERSWILD 0x5455 asm/ioctls.h:#define TIOCGLCKTRMIOS 0x5456 asm/ioctls.h:#define TIOCSLCKTRMIOS 0x5457
asm/ioctls.h:#define TIOCSERGSTRUCT 0x5458 /* For debugging only */ asm/ioctls.h:#define TIOCSERGETLSR 0x5459 /* Get line status register */ asm/ioctls.h:#define TIOCSERGETMULTI 0x545A /* Get multiport config */ asm/ioctls.h:#define TIOCSERSETMULTI 0x545B /* Set multiport config */
asm/ioctls.h:#define TIOCMIWAIT 0x545C /* wait for a change on serial input lin e(s) */
asm/ioctls.h:#define TIOCGICOUNT 0x545D /* read serial port inline inter rupt counts */
asm/ioctls.h:#define TIOCSHAYESESP 0x545F /* Set Hayes ESP configuration */ asm/ioctls.h:#define FIOQSIZE 0x5460 asm/ioctls.h:#define TIOCPKT_DATA 0 asm/ioctls.h:#define TIOCPKT_FLUSHREAD 1 asm/ioctls.h:#define TIOCPKT_FLUSHWRITE 2 asm/ioctls.h:#define TIOCPKT_STOP 4 asm/ioctls.h:#define TIOCPKT_START 8 asm/ioctls.h:#define TIOCPKT_NOSTOP 16 asm/ioctls.h:#define TIOCPKT_DOSTOP 32
asm/ioctls.h:#define TIOCSER_TEMT 0x01 /* Transmitter physically empty */ asm/auxvec.h:#define _ASM_X86_AUXVEC_H asm/auxvec.h:#define AT_SYSINFO 32 asm/auxvec.h:#define AT_SYSINFO_EHDR 33 asm/kvm.h:#define _ASM_X86_KVM_H asm/kvm.h:#define KVM_NR_INTERRUPTS 256 asm/kvm.h:#define KVM_IOAPIC_NUM_PINS 24 asm/kvm.h:#define KVM_IRQCHIP_PIC_MASTER 0 asm/kvm.h:#define KVM_IRQCHIP_PIC_SLAVE 1 asm/kvm.h:#define KVM_IRQCHIP_IOAPIC 2 asm/kvm.h:#define KVM_APIC_REG_SIZE 0x400 asm/kvm.h:#define KVM_CPUID_FLAG_SIGNIFCANT_INDEX 1 asm/kvm.h:#define KVM_CPUID_FLAG_STATEFUL_FUNC 2 asm/kvm.h:#define KVM_CPUID_FLAG_STATE_READ_NEXT 4 asm/posix_types_64.h:#define _ASM_X86_POSIX_TYPES_64_H asm/sembuf.h:#define _ASM_X86_SEMBUF_H asm/termbits.h:#define _ASM_X86_TERMBITS_H asm/termbits.h:#define NCCS 19 asm/termbits.h:#define VINTR 0 asm/termbits.h:#define VQUIT 1 asm/termbits.h:#define VERASE 2 asm/termbits.h:#define VKILL 3 asm/termbits.h:#define VEOF 4 asm/termbits.h:#define VTIME 5 asm/termbits.h:#define VMIN 6 asm/termbits.h:#define VSWTC 7 asm/termbits.h:#define VSTART 8 asm/termbits.h:#define VSTOP 9 asm/termbits.h:#define VSUSP 10 asm/termbits.h:#define VEOL 11 asm/termbits.h:#define VREPRINT 12 asm/termbits.h:#define VDISCARD 13 asm/termbits.h:#define VWERASE 14 asm/termbits.h:#define VLNEXT 15 asm/termbits.h:#define VEOL2 16 asm/termbits.h:#define IGNBRK 0000001 asm/termbits.h:#define BRKINT 0000002 asm/termbits.h:#define IGNPAR 0000004 asm/termbits.h:#define PARMRK 0000010 asm/termbits.h:#define INPCK 0000020 asm/termbits.h:#define ISTRIP 0000040 asm/termbits.h:#define INLCR 0000100 asm/termbits.h:#define IGNCR 0000200 asm/termbits.h:#define ICRNL 0000400 asm/termbits.h:#define IUCLC 0001000 asm/termbits.h:#define IXON 0002000 asm/termbits.h:#define IXANY 0004000 asm/termbits.h:#define IXOFF 0010000 asm/termbits.h:#define IMAXBEL 0020000 asm/termbits.h:#define IUTF8 0040000
asm/termbits.h:#define OPOST 0000001 asm/termbits.h:#define OLCUC 0000002 asm/termbits.h:#define ONLCR 0000004 asm/termbits.h:#define OCRNL 0000010 asm/termbits.h:#define ONOCR 0000020 asm/termbits.h:#define ONLRET 0000040 asm/termbits.h:#define OFILL 0000100 asm/termbits.h:#define OFDEL 0000200 asm/termbits.h:#define NLDLY 0000400 asm/termbits.h:#define NL0 0000000 asm/termbits.h:#define NL1 0000400 asm/termbits.h:#define CRDLY 0003000 asm/termbits.h:#define CR0 0000000 asm/termbits.h:#define CR1 0001000 asm/termbits.h:#define CR2 0002000 asm/termbits.h:#define CR3 0003000 asm/termbits.h:#define TABDLY 0014000 asm/termbits.h:#define TAB0 0000000 asm/termbits.h:#define TAB1 0004000 asm/termbits.h:#define TAB2 0010000 asm/termbits.h:#define TAB3 0014000 asm/termbits.h:#define XTABS 0014000 asm/termbits.h:#define BSDLY 0020000 asm/termbits.h:#define BS0 0000000 asm/termbits.h:#define BS1 0020000 asm/termbits.h:#define VTDLY 0040000 asm/termbits.h:#define VT0 0000000 asm/termbits.h:#define VT1 0040000 asm/termbits.h:#define FFDLY 0100000 asm/termbits.h:#define FF0 0000000 asm/termbits.h:#define FF1 0100000 asm/termbits.h:#define CBAUD 0010017 asm/termbits.h:#define B0 0000000 /* hang up */ asm/termbits.h:#define B50 0000001 asm/termbits.h:#define B75 0000002 asm/termbits.h:#define B110 0000003 asm/termbits.h:#define B134 0000004 asm/termbits.h:#define B150 0000005 asm/termbits.h:#define B200 0000006 asm/termbits.h:#define B300 0000007 asm/termbits.h:#define B600 0000010 asm/termbits.h:#define B1200 0000011 asm/termbits.h:#define B1800 0000012 asm/termbits.h:#define B2400 0000013 asm/termbits.h:#define B4800 0000014 asm/termbits.h:#define B9600 0000015 asm/termbits.h:#define B19200 0000016 asm/termbits.h:#define B38400 0000017 asm/termbits.h:#define EXTA B19200 asm/termbits.h:#define EXTB B38400 asm/termbits.h:#define CSIZE 0000060 asm/termbits.h:#define CS5 0000000 asm/termbits.h:#define CS6 0000020 asm/termbits.h:#define CS7 0000040 asm/termbits.h:#define CS8 0000060 asm/termbits.h:#define CSTOPB 0000100 asm/termbits.h:#define CREAD 0000200 asm/termbits.h:#define PARENB 0000400 asm/termbits.h:#define PARODD 0001000 asm/termbits.h:#define HUPCL 0002000
asm/termbits.h:#define CLOCAL 0004000 asm/termbits.h:#define CBAUDEX 0010000 asm/termbits.h:#define B57600 0010001 asm/termbits.h:#define B115200 0010002 asm/termbits.h:#define B230400 0010003 asm/termbits.h:#define B460800 0010004 asm/termbits.h:#define B500000 0010005 asm/termbits.h:#define B576000 0010006 asm/termbits.h:#define B921600 0010007 asm/termbits.h:#define B1000000 0010010 asm/termbits.h:#define B1152000 0010011 asm/termbits.h:#define B1500000 0010012 asm/termbits.h:#define B2000000 0010013 asm/termbits.h:#define B2500000 0010014 asm/termbits.h:#define B3000000 0010015 asm/termbits.h:#define B3500000 0010016 asm/termbits.h:#define B4000000 0010017
asm/termbits.h:#define CIBAUD 002003600000 /* input baud rate */
asm/termbits.h:#define CMSPAR 010000000000 /* mark or space (stick) parity */
asm/termbits.h:#define CRTSCTS 020000000000 /* flow control */
asm/termbits.h:#define IBSHIFT 16 /* Shift from CBAUD to CIBAUD */ asm/termbits.h:#define ISIG 0000001 asm/termbits.h:#define ICANON 0000002 asm/termbits.h:#define XCASE 0000004 asm/termbits.h:#define ECHO 0000010 asm/termbits.h:#define ECHOE 0000020 asm/termbits.h:#define ECHOK 0000040 asm/termbits.h:#define ECHONL 0000100 asm/termbits.h:#define NOFLSH 0000200 asm/termbits.h:#define TOSTOP 0000400 asm/termbits.h:#define ECHOCTL 0001000 asm/termbits.h:#define ECHOPRT 0002000 asm/termbits.h:#define ECHOKE 0004000 asm/termbits.h:#define FLUSHO 0010000 asm/termbits.h:#define PENDIN 0040000 asm/termbits.h:#define IEXTEN 0100000 asm/signal.h:#define _ASM_X86_SIGNAL_H asm/signal.h:#define NSIG 32 asm/signal.h:#define SIGHUP 1 asm/signal.h:#define SIGINT 2 asm/signal.h:#define SIGQUIT 3 asm/signal.h:#define SIGILL 4 asm/signal.h:#define SIGTRAP 5 asm/signal.h:#define SIGABRT 6 asm/signal.h:#define SIGIOT 6 asm/signal.h:#define SIGBUS 7 asm/signal.h:#define SIGFPE 8 asm/signal.h:#define SIGKILL 9 asm/signal.h:#define SIGUSR1 10 asm/signal.h:#define SIGSEGV 11 asm/signal.h:#define SIGUSR2 12 asm/signal.h:#define SIGPIPE 13 asm/signal.h:#define SIGALRM 14 asm/signal.h:#define SIGTERM 15 asm/signal.h:#define SIGSTKFLT 16 asm/signal.h:#define SIGCHLD 17 asm/signal.h:#define SIGCONT 18 asm/signal.h:#define SIGSTOP 19 asm/signal.h:#define SIGTSTP 20
asm/signal.h:#define SIGTTIN 21 asm/signal.h:#define SIGTTOU 22 asm/signal.h:#define SIGURG 23 asm/signal.h:#define SIGXCPU 24 asm/signal.h:#define SIGXFSZ 25 asm/signal.h:#define SIGVTALRM 26 asm/signal.h:#define SIGPROF 27 asm/signal.h:#define SIGWINCH 28 asm/signal.h:#define SIGIO 29 asm/signal.h:#define SIGPOLL SIGIO asm/signal.h:#define SIGLOST 29 asm/signal.h:#define SIGPWR 30 asm/signal.h:#define SIGSYS 31 asm/signal.h:#define SIGRTMIN 32
asm/signal.h:#define SIGRTMAX _NSIG
asm/signal.h:#define SA_NOCLDSTOP 0x00000001u asm/signal.h:#define SA_NOCLDWAIT 0x00000002u asm/signal.h:#define SA_SIGINFO 0x00000004u
asm/signal.h:#define SA_ONSTACK 0x08000000u asm/signal.h:#define SA_RESTART 0x10000000u asm/signal.h:#define SA_NODEFER 0x40000000u
asm/signal.h:#define SA_RESETHAND 0x80000000u asm/signal.h:#define SA_NOMASK SA_NODEFER
asm/signal.h:#define SA_ONESHOT SA_RESETHAND
asm/signal.h:#define SA_RESTORER 0x04000000 asm/signal.h:#define SS_ONSTACK 1
asm/signal.h:#define SS_DISABLE 2
asm/signal.h:#define MINSIGSTKSZ 2048 asm/signal.h:#define SIGSTKSZ 8192
asm/signal.h:#define sa_handler _u._sa_handler
asm/signal.h:#define sa_sigaction _u._sa_sigaction asm/sockios.h:#define _ASM_X86_SOCKIOS_H asm/sockios.h:#define FIOSETOWN 0x8901 asm/sockios.h:#define SIOCSPGRP 0x8902 asm/sockios.h:#define FIOGETOWN 0x8903 asm/sockios.h:#define SIOCGPGRP 0x8904 asm/sockios.h:#define SIOCATMARK 0x8905
asm/sockios.h:#define SIOCGSTAMP 0x8906 /* Get stamp (timeval) * /
asm/sockios.h:#define SIOCGSTAMPNS 0x8907 /* Get stamp (timespec) */
asm/e820.h:#define _ASM_X86_E820_H
asm/e820.h:#define E820MAP 0x2d0 /* our map */
asm/e820.h:#define E820MAX 128 /* number of entries in E820MAP */
asm/e820.h:#define E820_X_MAX E820MAX
asm/e820.h:#define E820NR 0x1e8 /* # entries in E820MAP */ asm/e820.h:#define E820_RAM 1 asm/e820.h:#define E820_RESERVED 2 asm/e820.h:#define E820_ACPI 3 asm/e820.h:#define E820_NVS 4 asm/e820.h:#define E820_UNUSABLE 5 asm/e820.h:#define E820_RESERVED_KERN 128 asm/e820.h:#define ISA_START_ADDRESS 0xa0000
asm/e820.h:#define ISA_END_ADDRESS 0x100000
asm/e820.h:#define is_ISA_range(s, e) ((s) >= ISA_START_ADDRESS && (e) < ISA_END _ADDRESS)
asm/e820.h:#define BIOS_BEGIN 0x000a0000 asm/e820.h:#define BIOS_END 0x00100000 asm/ptrace.h:#define _ASM_X86_PTRACE_H