From 14ed5fb1ec62bd69b6eb8994ab17645bbd4adba7 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Mon, 16 Dec 1996 20:24:22 +0000 Subject: [PATCH] initsignal(): Added SIGXCPU and SIGXFSZ. Left in the definitions for SIGCPU and SIGFSZ but we're (Jeremy and I) are actually unsure whether these were typos or if there are systems that use these alternate names. We've checked Solaris, SunOS, and IRIX; they contain only the SIGX* names. --- Modules/signalmodule.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c index 9e7f2396442..5a9141933a0 100644 --- a/Modules/signalmodule.c +++ b/Modules/signalmodule.c @@ -435,9 +435,17 @@ initsignal() x = PyInt_FromLong(SIGCPU); PyDict_SetItemString(d, "SIGCPU", x); #endif +#ifdef SIGXCPU + x = PyInt_FromLong(SIGXCPU); + PyDict_SetItemString(d, "SIGXCPU", x); +#endif #ifdef SIGFSZ x = PyInt_FromLong(SIGFSZ); PyDict_SetItemString(d, "SIGFSZ", x); +#endif +#ifdef SIGXFSZ + x = PyInt_FromLong(SIGXFSZ); + PyDict_SetItemString(d, "SIGXFSZ", x); #endif /* Check for errors */ if (PyErr_Occurred())