@@ -28,21 +28,21 @@ class AuxVector {
28
28
// / some entries to the Linux AT_ value so that LLDB only has to use
29
29
// / the constants listed here when asking the AuxVector for a value.
30
30
enum EntryType {
31
- AUXV_AT_NULL = 0 , // /< End of auxv.
32
- AUXV_AT_IGNORE = 1 , // /< Ignore entry.
33
- AUXV_AT_EXECFD = 2 , // /< File descriptor of program.
34
- AUXV_AT_PHDR = 3 , // /< Program headers.
35
- AUXV_AT_PHENT = 4 , // /< Size of program header.
36
- AUXV_AT_PHNUM = 5 , // /< Number of program headers.
37
- AUXV_AT_PAGESZ = 6 , // /< Page size.
38
- AUXV_AT_BASE = 7 , // /< Interpreter base address.
39
- AUXV_AT_FLAGS = 8 , // /< Flags.
40
- AUXV_AT_ENTRY = 9 , // /< Program entry point.
41
- AUXV_AT_NOTELF = 10 , // /< Set if program is not an ELF.
42
- AUXV_AT_UID = 11 , // /< UID.
43
- AUXV_AT_EUID = 12 , // /< Effective UID.
44
- AUXV_AT_GID = 13 , // /< GID.
45
- AUXV_AT_EGID = 14 , // /< Effective GID.
31
+ AUXV_AT_NULL = 0 , // /< End of auxv.
32
+ AUXV_AT_IGNORE = 1 , // /< Ignore entry.
33
+ AUXV_AT_EXECFD = 2 , // /< File descriptor of program.
34
+ AUXV_AT_PHDR = 3 , // /< Program headers.
35
+ AUXV_AT_PHENT = 4 , // /< Size of program header.
36
+ AUXV_AT_PHNUM = 5 , // /< Number of program headers.
37
+ AUXV_AT_PAGESZ = 6 , // /< Page size.
38
+ AUXV_AT_BASE = 7 , // /< Interpreter base address.
39
+ AUXV_AT_FLAGS = 8 , // /< Flags.
40
+ AUXV_AT_ENTRY = 9 , // /< Program entry point.
41
+ AUXV_AT_NOTELF = 10 , // /< Set if program is not an ELF.
42
+ AUXV_AT_UID = 11 , // /< UID.
43
+ AUXV_AT_EUID = 12 , // /< Effective UID.
44
+ AUXV_AT_GID = 13 , // /< GID.
45
+ AUXV_AT_EGID = 14 , // /< Effective GID.
46
46
47
47
// At this point Linux and FreeBSD diverge and many of the following values
48
48
// are Linux specific. If you use them make sure you are in Linux specific
0 commit comments