From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2178) id BFC0E3858C27; Fri, 28 Apr 2023 09:15:30 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org BFC0E3858C27 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1682673330; bh=jtJ2KCDD9VtggnVvPeU/Yo/Bd9HUikjBl8lvSIvCo3s=; h=From:To:Subject:Date:From; b=LvTR542WRRvLCDX1ITEGEcup5aE+MpLkzTr00XV4KJRqWT45ugcrYFen+Cte1asHE udAnZ/SAUtVb4GGJjQ/T5SEghTZP1qVprUapvjQJv+kMkl4N0eOAnquq3xVD+BacK1 gLCKhglHTGhe3yRH2CRqP2ix5WL3iLDH4gaQSipc= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Florian Weimer To: glibc-cvs@sourceware.org Subject: [glibc] elf.h: add PT_GNU_SFRAME X-Act-Checkin: glibc X-Git-Author: Indu Bhagat X-Git-Refname: refs/heads/master X-Git-Oldrev: af16a59ee1f72392b88d439d8f802c9844f86f4f X-Git-Newrev: 2fa7fd1af733e323fa90d059e2ba60ec965d2cbb Message-Id: <20230428091530.BFC0E3858C27@sourceware.org> Date: Fri, 28 Apr 2023 09:15:30 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=2fa7fd1af733e323fa90d059e2ba60ec965d2cbb commit 2fa7fd1af733e323fa90d059e2ba60ec965d2cbb Author: Indu Bhagat Date: Fri Apr 28 10:53:05 2023 +0200 elf.h: add PT_GNU_SFRAME Support for SFrame format is available in Binutils 2.40. The GNU ld merges the input .sframe sections and creates an output .sframe section in a segment PT_GNU_SFRAME. Diff: --- elf/elf.h | 1 + 1 file changed, 1 insertion(+) diff --git a/elf/elf.h b/elf/elf.h index 4bc0e4299c..94ca23c1bb 100644 --- a/elf/elf.h +++ b/elf/elf.h @@ -728,6 +728,7 @@ typedef struct #define PT_GNU_STACK 0x6474e551 /* Indicates stack executability */ #define PT_GNU_RELRO 0x6474e552 /* Read-only after relocation */ #define PT_GNU_PROPERTY 0x6474e553 /* GNU property */ +#define PT_GNU_SFRAME 0x6474e554 /* SFrame segment. */ #define PT_LOSUNW 0x6ffffffa #define PT_SUNWBSS 0x6ffffffa /* Sun Specific segment */ #define PT_SUNWSTACK 0x6ffffffb /* Stack segment */