commit | 9ceaa72ebe96cb5423aa3fb2adede3fcd1c7b6b0 | [log] [tgz] |
---|---|---|
author | Anthony Baxter <anthonybaxter@gmail.com> | Wed Oct 13 14:48:50 2004 +0000 |
committer | Anthony Baxter <anthonybaxter@gmail.com> | Wed Oct 13 14:48:50 2004 +0000 |
tree | 89e6ac6b3f1ec58c13296765e2301b854a6150d6 | |
parent | 7d428788e156200df2f8e6421cad9fce083fd96b [diff] [blame] |
Patch #975056 - fixes for restartable signals on *BSD. In addition, a few remaining calls to signal() were converted to PyOS_setsig().
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 521a51f..7b8b4af 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c
@@ -217,7 +217,7 @@ /* Generic includes */ #include <sys/types.h> -#include <signal.h> +//#include <signal.h> /* Generic socket object definitions and includes */ #define PySocket_BUILDING_SOCKET