| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | /***********************************************************
 | 
					
						
							| 
									
										
										
										
											2000-06-30 23:50:40 +00:00
										 |  |  | Copyright (c) 2000, BeOpen.com. | 
					
						
							|  |  |  | Copyright (c) 1995-2000, Corporation for National Research Initiatives. | 
					
						
							|  |  |  | Copyright (c) 1990-1995, Stichting Mathematisch Centrum. | 
					
						
							|  |  |  | All rights reserved. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | See the file "Misc/COPYRIGHT" for information on usage and | 
					
						
							|  |  |  | redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | ******************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | /* Check for interrupts */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | #include "config.h"
 | 
					
						
							| 
									
										
										
										
											1998-12-04 18:50:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* config.h may or may not define DL_IMPORT */ | 
					
						
							|  |  |  | #ifndef DL_IMPORT	/* declarations for DLL import/export */
 | 
					
						
							|  |  |  | #define DL_IMPORT(RTYPE) RTYPE
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | #include "myproto.h"
 | 
					
						
							| 
									
										
										
										
											1997-02-14 21:12:24 +00:00
										 |  |  | #include "mymalloc.h" /* For ANY */
 | 
					
						
							| 
									
										
										
										
											1992-01-19 16:29:05 +00:00
										 |  |  | #include "intrcheck.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-02-14 21:12:24 +00:00
										 |  |  | /* Copied here from ceval.h -- can't include that file. */ | 
					
						
							|  |  |  | int Py_AddPendingCall Py_PROTO((int (*func) Py_PROTO((ANY *)), ANY *arg)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-06-24 22:30:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | #ifdef QUICKWIN
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <io.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | PyOS_InitInterrupts() | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-02 03:02:27 +00:00
										 |  |  | void | 
					
						
							|  |  |  | PyOS_FiniInterrupts() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | int | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | PyOS_InterruptOccurred() | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	_wyield(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define OK
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* QUICKWIN */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-12-02 20:34:19 +00:00
										 |  |  | #if defined(_M_IX86) && !defined(__QNX__)
 | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | #include <io.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if defined(MSDOS) && !defined(QUICKWIN)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef __GNUC__
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* This is for DJGPP's GO32 extender.  I don't know how to trap
 | 
					
						
							|  |  |  |  * control-C  (There's no API for ctrl-C, and I don't want to mess with | 
					
						
							|  |  |  |  * the interrupt vectors.)  However, this DOES catch control-break. | 
					
						
							|  |  |  |  * --Amrit | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <go32.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | PyOS_InitInterrupts() | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	_go32_want_ctrl_break(1 /* TRUE */); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-02 03:02:27 +00:00
										 |  |  | void | 
					
						
							|  |  |  | PyOS_FiniInterrupts() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | int | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | PyOS_InterruptOccurred() | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	return _go32_was_ctrl_break_hit(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #else /* !__GNUC__ */
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | /* This might work for MS-DOS (untested though): */ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | PyOS_InitInterrupts() | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-02 03:02:27 +00:00
										 |  |  | void | 
					
						
							|  |  |  | PyOS_FiniInterrupts() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | int | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | PyOS_InterruptOccurred() | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int interrupted = 0; | 
					
						
							|  |  |  | 	while (kbhit()) { | 
					
						
							|  |  |  | 		if (getch() == '\003') | 
					
						
							|  |  |  | 			interrupted = 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return interrupted; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | #endif /* __GNUC__ */
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | #define OK
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | #endif /* MSDOS && !QUICKWIN */
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-06-24 22:30:42 +00:00
										 |  |  | #ifdef macintosh
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-27 14:40:41 +00:00
										 |  |  | /* The Mac interrupt code has moved to macglue.c */ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | #define OK
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-06-24 22:30:42 +00:00
										 |  |  | #endif /* macintosh */
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef OK
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | /* Default version -- for real operating systems and for Standard C */ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | #include <string.h>
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | #include <signal.h>
 | 
					
						
							| 
									
										
										
										
											1996-12-02 18:27:33 +00:00
										 |  |  | #ifdef HAVE_UNISTD_H
 | 
					
						
							|  |  |  | #include <unistd.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-17 16:11:53 +00:00
										 |  |  | static int interrupted; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-03-10 15:13:03 +00:00
										 |  |  | void | 
					
						
							|  |  |  | PyErr_SetInterrupt() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	interrupted = 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | extern int PyErr_CheckSignals(); | 
					
						
							| 
									
										
										
										
											1997-01-21 06:00:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-03-27 17:29:44 +00:00
										 |  |  | /* ARGSUSED */ | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | static RETSIGTYPE | 
					
						
							| 
									
										
										
										
											1997-12-02 20:34:19 +00:00
										 |  |  | #if defined(_M_IX86) && !defined(__QNX__)
 | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | intcatcher(int sig)	/* So the C compiler shuts up */ | 
					
						
							|  |  |  | #else /* _M_IX86 */
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | intcatcher(sig) | 
					
						
							| 
									
										
										
										
											1992-03-27 17:29:44 +00:00
										 |  |  | 	int sig; /* Not used by required by interface */ | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | #endif /* _M_IX86 */
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | 	extern void Py_Exit Py_PROTO((int)); | 
					
						
							| 
									
										
										
										
											1993-07-05 10:31:29 +00:00
										 |  |  | 	static char message[] = | 
					
						
							|  |  |  | "python: to interrupt a truly hanging Python program, interrupt once more.\n"; | 
					
						
							|  |  |  | 	switch (interrupted++) { | 
					
						
							|  |  |  | 	case 0: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 1: | 
					
						
							|  |  |  | 		write(2, message, strlen(message)); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case 2: | 
					
						
							|  |  |  | 		interrupted = 0; | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | 		Py_Exit(1); | 
					
						
							| 
									
										
										
										
											1993-07-05 10:31:29 +00:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	signal(SIGINT, intcatcher); | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | 	Py_AddPendingCall(PyErr_CheckSignals, NULL); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-02 03:02:27 +00:00
										 |  |  | static RETSIGTYPE (*old_siginthandler)() = SIG_DFL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | void | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | PyOS_InitInterrupts() | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1997-08-02 03:02:27 +00:00
										 |  |  | 	if ((old_siginthandler = signal(SIGINT, SIG_IGN)) != SIG_IGN) | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 		signal(SIGINT, intcatcher); | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | #ifdef HAVE_SIGINTERRUPT
 | 
					
						
							| 
									
										
										
										
											1993-04-15 15:33:52 +00:00
										 |  |  | 	/* This is for SunOS and other modern BSD derivatives.
 | 
					
						
							|  |  |  | 	   It means that system calls (like read()) are not restarted | 
					
						
							|  |  |  | 	   after an interrupt.  This is necessary so interrupting a | 
					
						
							|  |  |  | 	   read() or readline() call works as expected. | 
					
						
							|  |  |  | 	   XXX On old BSD (pure 4.2 or older) you may have to do this | 
					
						
							|  |  |  | 	   differently! */ | 
					
						
							|  |  |  | 	siginterrupt(SIGINT, 1); | 
					
						
							| 
									
										
										
										
											1994-08-30 08:27:36 +00:00
										 |  |  | #endif /* HAVE_SIGINTERRUPT */
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-02 03:02:27 +00:00
										 |  |  | void | 
					
						
							|  |  |  | PyOS_FiniInterrupts() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	signal(SIGINT, old_siginthandler); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | int | 
					
						
							| 
									
										
										
										
											1997-04-29 21:03:06 +00:00
										 |  |  | PyOS_InterruptOccurred() | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (!interrupted) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	interrupted = 0; | 
					
						
							|  |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* !OK */
 | 
					
						
							| 
									
										
										
										
											1997-11-14 22:24:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							|  |  |  | PyOS_AfterFork() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } |