Home
last modified time | relevance | path

Searched refs:PyOS_setsig (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Modules/
Dsignalmodule.c383 PyOS_setsig(sig_num, signal_handler); in signal_handler()
548 if (PyOS_setsig(signalnum, func) == SIG_ERR) { in signal_signal_impl()
1615 PyOS_setsig(SIGINT, signal_handler);
1742 PyOS_setsig(signum, SIG_DFL);
1892 PyOS_setsig(SIGPIPE, SIG_IGN);
1895 PyOS_setsig(SIGXFZ, SIG_IGN);
1898 PyOS_setsig(SIGXFSZ, SIG_IGN);
1924 PyOS_setsig(SIGPIPE, SIG_DFL);
1927 PyOS_setsig(SIGXFZ, SIG_DFL);
1930 PyOS_setsig(SIGXFSZ, SIG_DFL);
Dreadline.c1101 PyOS_setsig(SIGWINCH, readline_sigwinch_handler); in readline_sigwinch_handler()
1248 sigwinch_ohandler = PyOS_setsig(SIGWINCH, readline_sigwinch_handler); in setup_readline()
Dmain.c630 if (PyOS_setsig(SIGINT, SIG_DFL) == SIG_ERR) { in exit_sigint()
Dposixmodule.c7271 sig_saved = PyOS_setsig(SIGCHLD, SIG_DFL); in os_openpty_impl()
7275 PyOS_setsig(SIGCHLD, sig_saved); in os_openpty_impl()
7281 PyOS_setsig(SIGCHLD, sig_saved); in os_openpty_impl()
7285 PyOS_setsig(SIGCHLD, sig_saved); in os_openpty_impl()
/third_party/python/Include/
Dpylifecycle.h63 PyAPI_FUNC(PyOS_sighandler_t) PyOS_setsig(int, PyOS_sighandler_t);
/third_party/python/PC/
Dpython3dll.c484 EXPORT_FUNC(PyOS_setsig)
/third_party/python/Doc/data/
Dstable_abi.dat456 function,PyOS_setsig,3.2,
/third_party/python/Doc/c-api/
Dsys.rst112 .. c:function:: PyOS_sighandler_t PyOS_setsig(int i, PyOS_sighandler_t h)
/third_party/python/Misc/NEWS.d/
D3.10.0a7.rst228 CPython now sets the ``SA_ONSTACK`` flag in ``PyOS_setsig`` for the VM's
/third_party/python/Python/
Dpylifecycle.c2942 PyOS_setsig(int sig, PyOS_sighandler_t handler) in PyOS_setsig() function
/third_party/python/Misc/
Dstable_abi.txt1019 function PyOS_setsig
DHISTORY19683 BSD systems. Consistently use PyOS_setsig() instead of signal().
26088 and PyOS_setsig() to set one. A new convenience typedef
/third_party/python/Doc/whatsnew/
D2.0.rst805 a signal handler and :func:`PyOS_setsig` will set a new handler.