]> granicus.if.org Git - python/commitdiff
Recent ANSIfication introduced a couple instances of
authorTim Peters <tim.peters@gmail.com>
Sun, 23 Jul 2000 18:10:18 +0000 (18:10 +0000)
committerTim Peters <tim.peters@gmail.com>
Sun, 23 Jul 2000 18:10:18 +0000 (18:10 +0000)
    #if RETSIGTYPE != void
That isn't C, and MSVC properly refuses to compile it.
Introduced new Py_RETURN_FROM_SIGNAL_HANDLER macro in pyport.h
to expand to the correct thing based on RETSIGTYPE.  However,
only void is ANSI!  Do we still have platforms that return int?
The Unix config mess appears to #define RETSIGTYPE by magic
without being asked to, so I assume it's "a problem" across
Unices still.

Include/pyport.h
Modules/signalmodule.c
Parser/intrcheck.c

index fbaaa38d7212fe212b799326de0a907e71970663..4faba7c9f0eae81def76272e82550487c52c78d5 100644 (file)
@@ -11,7 +11,7 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
 
 /**************************************************************************
 Symbols and macros to supply platform-independent interfaces to basic
-C-language operations whose spellings vary across platforms.
+C language & library operations whose spellings vary across platforms.
 
 Please try to make documentation here as clear as possible:  by definition,
 the stuff here is trying to illuminate C's darkest corners.
@@ -22,6 +22,11 @@ SIGNED_RIGHT_SHIFT_ZERO_FILLS
 Meaning:  To be defined iff i>>j does not extend the sign bit when i is a
           signed integral type and i < 0.
 Used in:  Py_ARITHMETIC_RIGHT_SHIFT
+
+RETSIGTYPE
+Meaning:  Expands to void or int, depending on what the platform wants
+          signal handlers to return.  Note that only void is ANSI!
+Used in:  Py_RETURN_FROM_SIGNAL_HANDLER
 **************************************************************************/
 
 
@@ -50,6 +55,25 @@ extern "C" {
 #define Py_ARITHMETIC_RIGHT_SHIFT(TYPE, I, J) ((I) >> (J))
 #endif
 
+/* Py_FORCE_EXPANSION
+ * "Simply" returns its argument.  However, macro expansions within the
+ * argument are evaluated.  This unfortunate trickery is needed to get
+ * token-pasting to work as desired in some cases.
+ */
+#define Py_FORCE_EXPANSION(X) X
+
+/* Py_RETURN_FROM_SIGNAL_HANDLER
+ * The return from a signal handler varies depending on whether RETSIGTYPE
+ * is int or void.  The macro Py_RETURN_FROM_SIGNAL_HANDLER(VALUE) expands
+ * to
+ *     return VALUE
+ * if RETSIGTYPE is int, else to nothing if RETSIGTYPE is void.
+ */
+#define int_PySIGRETURN(VALUE) return VALUE
+#define void_PySIGRETURN(VALUE)
+#define Py_RETURN_FROM_SIGNAL_HANDLER(VALUE) \
+        Py_FORCE_EXPANSION(RETSIGTYPE) ## _PySIGRETURN(VALUE)
+
 #ifdef __cplusplus
 }
 #endif
index 3a2a6dfeb78cc140019fdc8c9d4c6d831eefd976..6fe516a87efec2022c01d0f3786b400f27b2e2d2 100644 (file)
@@ -143,9 +143,7 @@ signal_handler(int sig_num)
        siginterrupt(sig_num, 1);
 #endif
        signal(sig_num, signal_handler);
-#if RETSIGTYPE != void
-       return 0;
-#endif
+       Py_RETURN_FROM_SIGNAL_HANDLER(0);
 }
 
 
index e9927e9cffb9389d79fa2870c70bb1547fe0c372..2f151ee6b4dba8de50205ae972d178b187454c16 100644 (file)
@@ -168,9 +168,7 @@ intcatcher(int sig)
        }
        signal(SIGINT, intcatcher);
        Py_AddPendingCall(checksignals_witharg, NULL);
-#if RETSIGTYPE != void
-       return 0;
-#endif
+       Py_RETURN_FROM_SIGNAL_HANDLER(0);
 }
 
 static RETSIGTYPE (*old_siginthandler)(int) = SIG_DFL;