From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1944) id 6CCC63853D70; Wed, 23 Nov 2022 14:44:06 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6CCC63853D70 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1669214646; bh=2NPYoBtL7dSTEJPYO5REDN2dvY31velIiKJIHiRHukE=; h=From:To:Subject:Date:From; b=aKo5ZCu8USyqw8V2YK8CYn/4P5OY9OXLQjKPvANP/dyuHSxHGBnmRS2AgYa38cyj1 tOfUJuSm/QmSm9v5Si+v48K8MEuUedPb6fFbVufuLazJgukLpL1b5Jasi/V1ZdC5x7 lu6f1I+6q8xYmwWYOwIg0o/b5b3R6NLa1F4nqduk= 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: 56d37dff3890e9ad65473ce0fd83965e1823f10c X-Git-Newrev: 61de2a5e8450060e014a61e9ff6ce88d2501ed97 Message-Id: <20221123144406.6CCC63853D70@sourceware.org> Date: Wed, 23 Nov 2022 14:44:06 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=61de2a5e8450060e014a61e9ff6ce88d2501ed97 commit 61de2a5e8450060e014a61e9ff6ce88d2501ed97 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 1eff0704d4..55809e941e 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)