From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1944) id 00C643858294; Fri, 5 Aug 2022 19:33:59 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 00C643858294 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: bb5bc7694711a280b9bca50f322f1e12f934b92e X-Git-Newrev: 823a9cb203c3b13127db5b3e1f94a697e695735f Message-Id: <20220805193359.00C643858294@sourceware.org> Date: Fri, 5 Aug 2022 19:33:59 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Aug 2022 19:33:59 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=823a9cb203c3b13127db5b3e1f94a697e695735f commit 823a9cb203c3b13127db5b3e1f94a697e695735f 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)