mirror of
https://github.com/python/cpython.git
synced 2024-12-01 13:55:45 +08:00
ac827edc49
faulthandler now allocates a dedicated stack of SIGSTKSZ*2 bytes, instead of just SIGSTKSZ bytes. Calling the previous signal handler in faulthandler signal handler uses more than SIGSTKSZ bytes of stack memory on some platforms.
5 lines
291 B
ReStructuredText
5 lines
291 B
ReStructuredText
Fix ``faulthandler.register(chain=True)`` stack. faulthandler now allocates a
|
|
dedicated stack of ``SIGSTKSZ*2`` bytes, instead of just ``SIGSTKSZ`` bytes.
|
|
Calling the previous signal handler in faulthandler signal handler uses more
|
|
than ``SIGSTKSZ`` bytes of stack memory on some platforms.
|