2017-11-01 10:08:43 -04:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
2008-10-23 01:26:29 -04:00
|
|
|
#ifndef _ASM_X86_AUXVEC_H
|
|
|
|
#define _ASM_X86_AUXVEC_H
|
2007-10-15 17:28:19 -04:00
|
|
|
/*
|
|
|
|
* Architecture-neutral AT_ values in 0-17, leave some room
|
|
|
|
* for more of them, start the x86-specific ones at 32.
|
|
|
|
*/
|
|
|
|
#ifdef __i386__
|
|
|
|
#define AT_SYSINFO 32
|
|
|
|
#endif
|
|
|
|
#define AT_SYSINFO_EHDR 33
|
|
|
|
|
2012-03-28 13:11:12 -04:00
|
|
|
/* entries in ARCH_DLINFO: */
|
|
|
|
#if defined(CONFIG_IA32_EMULATION) || !defined(CONFIG_X86_64)
|
2021-05-18 16:03:17 -04:00
|
|
|
# define AT_VECTOR_SIZE_ARCH 3
|
2012-03-28 13:11:12 -04:00
|
|
|
#else /* else it's non-compat x86-64 */
|
2021-05-18 16:03:17 -04:00
|
|
|
# define AT_VECTOR_SIZE_ARCH 2
|
2012-03-28 13:11:12 -04:00
|
|
|
#endif
|
|
|
|
|
2008-10-23 01:26:29 -04:00
|
|
|
#endif /* _ASM_X86_AUXVEC_H */
|