New submission from STINNER Victor <vstin...@redhat.com>:

Currently at startup, Python always call _PyFaulthandler_Init() which allocates 
a stack of SIGSTKSZ bytes, even if faulthandler is never used. That's a waste 
of memory: the stack should be allocated the first time faulthandler is used.

bpo-21131 requires to enlarge this stack size.

----------
components: Library (Lib)
messages: 349697
nosy: vstinner
priority: normal
severity: normal
status: open
title: faulthandler: only allocate the signal handler stack when faulthandler 
is used
versions: Python 3.9

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue37851>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to