Path: blob/main/system/lib/llvm-libc/include/llvm-libc-macros/sys-auxv-macros.h
6194 views
//===-- Macros defined in sys/auxv.h header file --------------------------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//78#ifndef LLVM_LIBC_MACROS_SYS_AUXV_MACROS_H9#define LLVM_LIBC_MACROS_SYS_AUXV_MACROS_H1011// Macros defining the aux vector indexes.12#define AT_NULL 013#define AT_IGNORE 114#define AT_EXECFD 215#define AT_PHDR 316#define AT_PHENT 417#define AT_PHNUM 518#define AT_PAGESZ 619#define AT_BASE 720#define AT_FLAGS 821#define AT_ENTRY 922#define AT_NOTELF 1023#define AT_UID 1124#define AT_EUID 1225#define AT_GID 1326#define AT_EGID 1427#define AT_PLATFORM 1528#define AT_HWCAP 1629#define AT_CLKTCK 173031#define AT_SECURE 2332#define AT_BASE_PLATFORM 2433#define AT_RANDOM 2534#define AT_HWCAP2 263536#define AT_EXECFN 313738#ifndef AT_MINSIGSTKSZ39#define AT_MINSIGSTKSZ 5140#endif4142#endif // LLVM_LIBC_MACROS_SYS_AUXV_MACROS_H434445