[issue22503] Signal stack overflow in faulthandler_user

STINNER Victor report at bugs.python.org
Sun Sep 28 10:51:05 CEST 2014


STINNER Victor added the comment:

_PyFaulthandler_Init() uses sigaltstack() with a stack of SIGSTKSZ bytes. On my Linux/x86_64, SIGSTKSZ is 8 KB.

What is the value of SIGSTKSZ on aarch64? Is there a C define (#ifdef) to use a different size on this architecture? Does the test pass if you modify faulthandler.c to use "SIGSTKSZ * 2"?

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue22503>
_______________________________________


More information about the Python-bugs-list mailing list