https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=239873
--- Comment #20 from commit-h...@freebsd.org --- A commit in branch stable/13 references this bug: URL: https://cgit.FreeBSD.org/src/commit/?id=d8247df24c1d3bacadd60a6633d76fb6cb56fd0e commit d8247df24c1d3bacadd60a6633d76fb6cb56fd0e Author: Dawid Gorecki <d...@semihalf.com> AuthorDate: 2021-10-13 19:06:05 +0000 Commit: Marcin Wojtas <m...@freebsd.org> CommitDate: 2021-12-30 15:25:25 +0000 libthr: Use kern.stacktop for thread stack calculation. Use the new kern.stacktop sysctl to retrieve the address of stack top instead of kern.usrstack. kern.usrstack does not have any knowledge of the stack gap, so this can cause problems with thread stacks. Using kern.stacktop sysctl should fix most of those problems. kern.usrstack is used as a fallback when kern.stacktop cannot be read. Rename usrstack variables to stacktop to reflect this change. Fixes problems with firefox and thunderbird not starting with stack gap enabled. PR: 239873 Reviewed by: kib Obtained from: Semihalf Sponsored by: Stormshield MFC after: 1 month Differential Revision: https://reviews.freebsd.org/D31898 (cherry picked from commit 78df56ccfcb40013a3e6904bd6d39836220c3550) lib/libthr/thread/thr_init.c | 19 +++++++++++-------- lib/libthr/thread/thr_private.h | 2 +- lib/libthr/thread/thr_stack.c | 22 ++++++++++++---------- 3 files changed, 24 insertions(+), 19 deletions(-) -- You are receiving this mail because: You are the assignee for the bug.