From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id E489C383EB01; Tue, 13 Dec 2022 20:38:00 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E489C383EB01 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1670963880; bh=FFNtfOhY77UDd78boPnyR+TUQQ7ySDkRR86lRxJhGsI=; h=From:To:Subject:Date:In-Reply-To:References:From; b=CT43+e3AZPvHHRWgJeTtWH9xlQK+KYyfirHUYzXy/daRY/LQeLuwhA5d+0+cIX9gt RprByM0XhPMk/OhFZuXhvd68dcpaAQRO7VVXeNHh/m/lTNORWbQQq5YsNtt16379UO yxaNFOy/2bKxjf+hgrxPJhy7TQQTzeOu5uEwIEug= From: "glaubitz at physik dot fu-berlin.de" To: glibc-bugs@sourceware.org Subject: [Bug libc/29899] Fix for bz#20305 broke glibc on alpha-linux-gnu Date: Tue, 13 Dec 2022 20:38:00 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: glibc X-Bugzilla-Component: libc X-Bugzilla-Version: 2.34 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: glaubitz at physik dot fu-berlin.de X-Bugzilla-Status: WAITING X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at sourceware dot org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://sourceware.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://sourceware.org/bugzilla/show_bug.cgi?id=3D29899 --- Comment #2 from John Paul Adrian Glaubitz --- (In reply to H.J. Lu from comment #1) > What are values of SIGSTKSZ and MINSIGSTKSZ before and after the commit? I'm not sure how to read out those values as I tried it with small test pro= gram which crashes after the commit. Without commit, I get: (sid-alpha-sbuild)glaubitz@z6:~/glibc-git/build$ /bz20305=20 The value of SIGSTKSZ is 16384. The value of MINSIGSTKSZ is 4096. (sid-alpha-sbuild)glaubitz@z6:~/glibc-git/build$ I used the following test program: #include #include int main() { printf("The value of SIGSTKSZ is %d.\n", SIGSTKSZ); printf("The value of MINSIGSTKSZ is %d.\n", MINSIGSTKSZ); return 0; } Do you have any other suggestion for dumping the values? --=20 You are receiving this mail because: You are on the CC list for the bug.=