Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 16 Sep 2022 20:25:46 GMT
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: daa85548d5cf - main - rtld: teach LD_SHOW_AUXV about AT_USRSTACK*
Message-ID:  <202209162025.28GKPkAj026513@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by kib:

URL: https://cgit.FreeBSD.org/src/commit/?id=daa85548d5cfc65e4beb7a211a155ae9b9fc41d9

commit daa85548d5cfc65e4beb7a211a155ae9b9fc41d9
Author:     Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2022-09-15 10:16:30 +0000
Commit:     Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2022-09-16 20:24:18 +0000

    rtld: teach LD_SHOW_AUXV about AT_USRSTACK*
    
    Reviewed by:    brooks, imp (previous version)
    Discussed with: markj
    Sponsored by:   The FreeBSD Foundation
    MFC after:      2 weeks
    Differential revision:  https://reviews.freebsd.org/D36540
---
 libexec/rtld-elf/rtld.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libexec/rtld-elf/rtld.c b/libexec/rtld-elf/rtld.c
index e08ab9f947c7..86515ef416d3 100644
--- a/libexec/rtld-elf/rtld.c
+++ b/libexec/rtld-elf/rtld.c
@@ -6192,6 +6192,8 @@ static const struct auxfmt {
 	AUXFMT(AT_PS_STRINGS, "%p"),
 	AUXFMT(AT_FXRNG, "%p"),
 	AUXFMT(AT_KPRELOAD, "%p"),
+	AUXFMT(AT_USRSTACKBASE, "%#lx"),
+	AUXFMT(AT_USRSTACKLIM, "%#lx"),
 };
 
 static bool



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202209162025.28GKPkAj026513>