From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1944) id F133B3865C28; Wed, 26 Oct 2022 15:15:32 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org F133B3865C28 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1666797334; bh=YWGhvRdHsj9LHCXvgHmA3b8ff1u4cmmJqIgcT0myLZI=; h=From:To:Subject:Date:From; b=LmyAbjy/JnmxhKYLDv3MfjJGesuAKywCsrJHnFkgwQ4LZ8HWTkaap0ZaDNNMUbBMB RnCU+l9lVFB1wiAma+pTvjPz59OrnONMDWBdLft51Ca2n5BebZ+PwvfrSMMCErT7/i /Q6O21xIeC8noWGtv718hCQrDlAtQJAKLsDKcWao= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Szabolcs Nagy To: glibc-cvs@sourceware.org Subject: [glibc/arm/morello/main] elf: add EF_AARCH64_CHERI_PURECAP X-Act-Checkin: glibc X-Git-Author: Szabolcs Nagy X-Git-Refname: refs/heads/arm/morello/main X-Git-Oldrev: 6248bcbd23d4911f09fe0d038ec0911b8fe04f25 X-Git-Newrev: 11e656b4b3ca2d71fe7ebb8845e03b082d82d805 Message-Id: <20221026151534.F133B3865C28@sourceware.org> Date: Wed, 26 Oct 2022 15:15:32 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=11e656b4b3ca2d71fe7ebb8845e03b082d82d805 commit 11e656b4b3ca2d71fe7ebb8845e03b082d82d805 Author: Szabolcs Nagy Date: Fri Apr 29 14:27:32 2022 +0100 elf: add EF_AARCH64_CHERI_PURECAP Diff: --- elf/elf.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/elf/elf.h b/elf/elf.h index f61eced554..4a5653c419 100644 --- a/elf/elf.h +++ b/elf/elf.h @@ -2906,6 +2906,9 @@ enum /* MTE memory tag segment type. */ #define PT_AARCH64_MEMTAG_MTE (PT_LOPROC + 2) +/* Processor specific flags for the ELF header e_flags field. */ +#define EF_AARCH64_CHERI_PURECAP 0x00010000 + /* AArch64 specific values for the Dyn d_tag field. */ #define DT_AARCH64_BTI_PLT (DT_LOPROC + 1) #define DT_AARCH64_PAC_PLT (DT_LOPROC + 3)