| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | /***********************************************************
 | 
					
						
							| 
									
										
										
										
											1993-03-29 10:43:31 +00:00
										 |  |  | Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum, | 
					
						
							|  |  |  | Amsterdam, The Netherlands. | 
					
						
							| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                         All Rights Reserved | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Permission to use, copy, modify, and distribute this software and its  | 
					
						
							|  |  |  | documentation for any purpose and without fee is hereby granted,  | 
					
						
							|  |  |  | provided that the above copyright notice appear in all copies and that | 
					
						
							|  |  |  | both that copyright notice and this permission notice appear in  | 
					
						
							|  |  |  | supporting documentation, and that the names of Stichting Mathematisch | 
					
						
							|  |  |  | Centrum or CWI not be used in advertising or publicity pertaining to | 
					
						
							|  |  |  | distribution of the software without specific, written prior permission. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO | 
					
						
							|  |  |  | THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND | 
					
						
							|  |  |  | FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE | 
					
						
							|  |  |  | FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
					
						
							|  |  |  | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
					
						
							|  |  |  | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT | 
					
						
							|  |  |  | OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ******************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | /* Check for interrupts */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-06-24 22:30:42 +00:00
										 |  |  | #ifdef THINK_C
 | 
					
						
							| 
									
										
										
										
											1991-07-01 18:46:03 +00:00
										 |  |  | /* This is for THINK C 4.0.
 | 
					
						
							|  |  |  |    For 3.0, you may have to remove the signal stuff. */ | 
					
						
							|  |  |  | #include <MacHeaders>
 | 
					
						
							| 
									
										
										
										
											1991-06-24 22:30:42 +00:00
										 |  |  | #define macintosh
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-01-19 16:29:05 +00:00
										 |  |  | #include "PROTO.h"
 | 
					
						
							|  |  |  | #include "intrcheck.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-06-24 22:30:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | #ifdef MSDOS
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  | initintr() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							|  |  |  | intrcheck() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int interrupted = 0; | 
					
						
							|  |  |  | 	while (kbhit()) { | 
					
						
							|  |  |  | 		if (getch() == '\003') | 
					
						
							|  |  |  | 			interrupted = 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return interrupted; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define OK
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-06-24 22:30:42 +00:00
										 |  |  | #ifdef macintosh
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-07-01 18:46:03 +00:00
										 |  |  | #ifdef applec /* MPW */
 | 
					
						
							| 
									
										
										
										
											1991-06-24 22:30:42 +00:00
										 |  |  | #include <OSEvents.h>
 | 
					
						
							|  |  |  | #include <SysEqu.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1991-01-16 14:04:51 +00:00
										 |  |  | #include <signal.h>
 | 
					
						
							|  |  |  | #include "sigtype.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int interrupted; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-01-19 16:29:05 +00:00
										 |  |  | static SIGTYPE intcatcher PROTO((int)); | 
					
						
							| 
									
										
										
										
											1991-01-16 14:04:51 +00:00
										 |  |  | static SIGTYPE | 
					
						
							| 
									
										
										
										
											1991-07-01 18:46:03 +00:00
										 |  |  | intcatcher(sig) | 
					
						
							| 
									
										
										
										
											1991-01-16 14:04:51 +00:00
										 |  |  | 	int sig; | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	interrupted = 1; | 
					
						
							|  |  |  | 	signal(SIGINT, intcatcher); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							|  |  |  | initintr() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1991-01-16 14:04:51 +00:00
										 |  |  | 	if (signal(SIGINT, SIG_IGN) != SIG_IGN) | 
					
						
							|  |  |  | 		signal(SIGINT, intcatcher); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							|  |  |  | intrcheck() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1991-01-16 14:04:51 +00:00
										 |  |  | 	register EvQElPtr q; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											1991-06-24 22:30:42 +00:00
										 |  |  | 	q = (EvQElPtr) GetEvQHdr()->qHead; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	for (; q; q = (EvQElPtr)q->qLink) { | 
					
						
							| 
									
										
										
										
											1991-01-16 14:04:51 +00:00
										 |  |  | 		if (q->evtQWhat == keyDown && | 
					
						
							|  |  |  | 				(char)q->evtQMessage == '.' && | 
					
						
							|  |  |  | 				(q->evtQModifiers & cmdKey) != 0) { | 
					
						
							| 
									
										
										
										
											1991-06-24 22:30:42 +00:00
										 |  |  | 			FlushEvents(keyDownMask, 0); | 
					
						
							| 
									
										
										
										
											1991-01-16 14:04:51 +00:00
										 |  |  | 			interrupted = 1; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (interrupted) { | 
					
						
							|  |  |  | 		interrupted = 0; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #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>
 | 
					
						
							|  |  |  | #include <signal.h>
 | 
					
						
							|  |  |  | #include "sigtype.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int interrupted; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-03-27 17:29:44 +00:00
										 |  |  | /* ARGSUSED */ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | static SIGTYPE | 
					
						
							|  |  |  | intcatcher(sig) | 
					
						
							| 
									
										
										
										
											1992-03-27 17:29:44 +00:00
										 |  |  | 	int sig; /* Not used by required by interface */ | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	interrupted = 1; | 
					
						
							|  |  |  | 	signal(SIGINT, intcatcher); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							|  |  |  | initintr() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (signal(SIGINT, SIG_IGN) != SIG_IGN) | 
					
						
							|  |  |  | 		signal(SIGINT, intcatcher); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							|  |  |  | intrcheck() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!interrupted) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	interrupted = 0; | 
					
						
							|  |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* !OK */
 |