Skip to content

Commit 546c7a7

Browse files
committed
[lldb] clang-format AuxVector.h
Doing this in its own commit so the intent of the previous change is clearer.
1 parent a251b49 commit 546c7a7

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

lldb/source/Plugins/Process/Utility/AuxVector.h

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,21 @@ class AuxVector {
2828
/// some entries to the Linux AT_ value so that LLDB only has to use
2929
/// the constants listed here when asking the AuxVector for a value.
3030
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.
4646

4747
// At this point Linux and FreeBSD diverge and many of the following values
4848
// are Linux specific. If you use them make sure you are in Linux specific

0 commit comments

Comments
 (0)