diff options
Diffstat (limited to 'scripts/glibcelf.py')
-rw-r--r-- | scripts/glibcelf.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/glibcelf.py b/scripts/glibcelf.py index 07bef94043..47f95d07ba 100644 --- a/scripts/glibcelf.py +++ b/scripts/glibcelf.py @@ -523,6 +523,10 @@ class Pt(_OpenIntEnum): PT_SUNWBSS = 0x6ffffffa PT_SUNWSTACK = 0x6ffffffb +class PtAARCH64(enum.Enum): + """Supplemental PT_* constants for EM_AARCH64.""" + PT_AARCH64_MEMTAG_MTE = 0x70000002 + class PtARM(enum.Enum): """Supplemental PT_* constants for EM_ARM.""" PT_ARM_EXIDX = 0x70000001 |