https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=206384

--- Comment #1 from Ed Maste <ema...@freebsd.org> ---
This is happening because libunwind steps on the thread stack guard page.

libpolyml/sighandler.cpp for the signal handler thread calls
pthread_attr_setstacksize(min(4096, PTHREAD_STACK_MIN)) - on FreeBSD/x86
PTHREAD_STACK_MIN is 2k so we end up with the 4k min, but it seems
llvm-libunwind needs more stack space for the _Unwind_ForcedUnwind.

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"

Reply via email to