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 schwab, vstinner
Date 2014-09-28.08:51:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1411894265.38.0.19847493532.issue22503@psf.upfronthosting.co.za>
In-reply-to
Content
_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"?
History
Date User Action Args
2014-09-28 08:51:05vstinnersetrecipients: + vstinner, schwab
2014-09-28 08:51:05vstinnersetmessageid: <1411894265.38.0.19847493532.issue22503@psf.upfronthosting.co.za>
2014-09-28 08:51:05vstinnerlinkissue22503 messages
2014-09-28 08:51:05vstinnercreate