This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients doko, vstinner
Date 2015-02-10.14:24:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1423578255.26.0.853126514394.issue23433@psf.upfronthosting.co.za>
In-reply-to
Content
faulthandler._stack_overflow() is written to crash. The comparison on stack pointers is just here to avoid an unlimited loop. A stack of 100 MB is something really large. I never seen an OS where faulthandler._stack_overflow() doesn't crash yet.

Here is a patch using Py_uintptr_t instead of void*.

Can someone test with GCC 5?
History
Date User Action Args
2015-02-10 14:24:15vstinnersetrecipients: + vstinner, doko
2015-02-10 14:24:15vstinnersetmessageid: <1423578255.26.0.853126514394.issue23433@psf.upfronthosting.co.za>
2015-02-10 14:24:15vstinnerlinkissue23433 messages
2015-02-10 14:24:15vstinnercreate