Message132579
| Author |
vstinner |
| Recipients |
Arfrever, Trundle, dmalcolm, lemburg, pitrou, scott.dial, vstinner |
| Date |
2011年03月30日.10:52:35 |
| SpamBayes Score |
1.2739989e-06 |
| Marked as misclassified |
No |
| Message-id |
<1301482356.68.0.438679645301.issue11393@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
> faulthandler_fatal_error() calls the previous signal handler
> using raise(signum)
It doesn't work as expected on Windows: Windows doesn't call its own signal handler anymore. Use the previous code (only on Windows).
I also added a test for stack overflow: it fails on FreeBSD because I called sigaltstack() with the wrong arguments. It is now fixed.
test_faulthandler pass on Linux, Windows and FreeBSD. |
|