diff options
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/signalmodule.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c index e278dd1..1b24cc9 100644 --- a/Modules/signalmodule.c +++ b/Modules/signalmodule.c @@ -541,6 +541,16 @@ initsignal(void) PyDict_SetItemString(d, "SIGXFSZ", x); Py_XDECREF(x); #endif +#ifdef SIGRTMIN + x = PyInt_FromLong(SIGRTMIN); + PyDict_SetItemString(d, "SIGRTMIN", x); + Py_XDECREF(x); +#endif +#ifdef SIGRTMAX + x = PyInt_FromLong(SIGRTMAX); + PyDict_SetItemString(d, "SIGRTMAX", x); + Py_XDECREF(x); +#endif #ifdef SIGINFO x = PyInt_FromLong(SIGINFO); PyDict_SetItemString(d, "SIGINFO", x); |