Home
last modified time | relevance | path

Searched refs:PyOS_sighandler_t (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Include/
Dpylifecycle.h61 typedef void (*PyOS_sighandler_t)(int); typedef
62 PyAPI_FUNC(PyOS_sighandler_t) PyOS_getsig(int);
63 PyAPI_FUNC(PyOS_sighandler_t) PyOS_setsig(int, PyOS_sighandler_t);
/third_party/python/Doc/c-api/
Dsys.rst104 .. c:function:: PyOS_sighandler_t PyOS_getsig(int i)
108 directly! :c:type:`PyOS_sighandler_t` is a typedef alias for :c:type:`void
112 .. c:function:: PyOS_sighandler_t PyOS_setsig(int i, PyOS_sighandler_t h)
116 not call those functions directly! :c:type:`PyOS_sighandler_t` is a typedef
/third_party/python/Python/
Dpylifecycle.c2902 PyOS_sighandler_t
2911 PyOS_sighandler_t handler; in PyOS_getsig()
2941 PyOS_sighandler_t
2942 PyOS_setsig(int sig, PyOS_sighandler_t handler) in PyOS_setsig()
2960 PyOS_sighandler_t oldhandler; in PyOS_setsig()
/third_party/python/Modules/
Dreadline.c1088 static PyOS_sighandler_t sigwinch_ohandler;
Dfaulthandler.c40 typedef PyOS_sighandler_t _Py_sighandler_t;
Dsignalmodule.c51 # define SIG_ERR ((PyOS_sighandler_t)(-1))
Dposixmodule.c7240 PyOS_sighandler_t sig_saved; in os_openpty_impl()
/third_party/python/Doc/data/
Dstable_abi.dat457 type,PyOS_sighandler_t,3.2,
/third_party/python/Misc/
Dstable_abi.txt272 typedef PyOS_sighandler_t
DHISTORY26089 PyOS_sighandler_t is defined for the type of signal handlers.