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 yan12125
Recipients Alex.Willmer, terry.reedy, vstinner, xdegaye, yan12125
Date 2016-05-15.06:22:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1463293329.62.0.0199302992447.issue26934@psf.upfronthosting.co.za>
In-reply-to
Content
> Please try without "sigaction(SIGSEGV, NULL, NULL);". Does the program still quit?

Nope.

int main()
{
    raise(SIGSEGV);
}

Still exits normally with 0.

> Does faulthandler._read_null() crash Python?

Yes.

int main()
{
    int *x = 0;
    int y = *x;
    return 0;
}

Is killed and exits with 139 as expected.
History
Date User Action Args
2016-05-15 06:22:09yan12125setrecipients: + yan12125, terry.reedy, vstinner, xdegaye, Alex.Willmer
2016-05-15 06:22:09yan12125setmessageid: <1463293329.62.0.0199302992447.issue26934@psf.upfronthosting.co.za>
2016-05-15 06:22:09yan12125linkissue26934 messages
2016-05-15 06:22:09yan12125create