Lines Matching refs:SIG_DFL
510 The action can be SIG_DFL, SIG_IGN, or a callable Python object.
562 func = SIG_DFL;
566 "signal.SIG_DFL, or a callable object");
601 SIG_DFL -- if the default action for the signal is in effect
1424 SIG_DFL -- used to refer to the system default handler\n\
1621 if (c_handler == SIG_DFL) {
1679 if (PyDict_SetItemString(d, "SIG_DFL", state->default_handler) < 0) {
1784 PyOS_setsig(signum, SIG_DFL);
1964 /* Restore signals that the interpreter has called SIG_IGN on to SIG_DFL.
1976 PyOS_setsig(SIGPIPE, SIG_DFL);
1979 PyOS_setsig(SIGXFZ, SIG_DFL);
1982 PyOS_setsig(SIGXFSZ, SIG_DFL);
1992 state->default_handler = PyLong_FromVoidPtr((void *)SIG_DFL);