mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
scripts/glibcelf.py: Add PT_AARCH64_MEMTAG_MTE constant
It was added in commit 603e5c8ba7
.
This caused the elf/tst-glibcelf consistency check to fail.
Reviewed-by: Florian Weimer <fweimer@redhat.com>
This commit is contained in:
@ -523,6 +523,10 @@ class Pt(_OpenIntEnum):
|
|||||||
PT_SUNWBSS = 0x6ffffffa
|
PT_SUNWBSS = 0x6ffffffa
|
||||||
PT_SUNWSTACK = 0x6ffffffb
|
PT_SUNWSTACK = 0x6ffffffb
|
||||||
|
|
||||||
|
class PtAARCH64(enum.Enum):
|
||||||
|
"""Supplemental PT_* constants for EM_AARCH64."""
|
||||||
|
PT_AARCH64_MEMTAG_MTE = 0x70000002
|
||||||
|
|
||||||
class PtARM(enum.Enum):
|
class PtARM(enum.Enum):
|
||||||
"""Supplemental PT_* constants for EM_ARM."""
|
"""Supplemental PT_* constants for EM_ARM."""
|
||||||
PT_ARM_EXIDX = 0x70000001
|
PT_ARM_EXIDX = 0x70000001
|
||||||
|
Reference in New Issue
Block a user