Searched refs:PyOS_setsig (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Modules/ |
D | signalmodule.c | 383 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);
|
D | readline.c | 1101 PyOS_setsig(SIGWINCH, readline_sigwinch_handler); in readline_sigwinch_handler() 1248 sigwinch_ohandler = PyOS_setsig(SIGWINCH, readline_sigwinch_handler); in setup_readline()
|
D | main.c | 630 if (PyOS_setsig(SIGINT, SIG_DFL) == SIG_ERR) { in exit_sigint()
|
D | posixmodule.c | 7271 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/ |
D | pylifecycle.h | 63 PyAPI_FUNC(PyOS_sighandler_t) PyOS_setsig(int, PyOS_sighandler_t);
|
/third_party/python/PC/ |
D | python3dll.c | 484 EXPORT_FUNC(PyOS_setsig)
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 456 function,PyOS_setsig,3.2,
|
/third_party/python/Doc/c-api/ |
D | sys.rst | 112 .. c:function:: PyOS_sighandler_t PyOS_setsig(int i, PyOS_sighandler_t h)
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0a7.rst | 228 CPython now sets the ``SA_ONSTACK`` flag in ``PyOS_setsig`` for the VM's
|
/third_party/python/Python/ |
D | pylifecycle.c | 2942 PyOS_setsig(int sig, PyOS_sighandler_t handler) in PyOS_setsig() function
|
/third_party/python/Misc/ |
D | stable_abi.txt | 1019 function PyOS_setsig
|
D | HISTORY | 19683 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/ |
D | 2.0.rst | 805 a signal handler and :func:`PyOS_setsig` will set a new handler.
|