blob: 09df4607f1684c680c65f2186c5f17287f93e308 [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001/***********************************************************
Guido van Rossumb9f8d6e1995-01-04 19:08:09 +00002Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3The Netherlands.
Guido van Rossumf70e43a1991-02-19 12:39:46 +00004
5 All Rights Reserved
6
7Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
9provided that the above copyright notice appear in all copies and that
10both that copyright notice and this permission notice appear in
11supporting documentation, and that the names of Stichting Mathematisch
12Centrum or CWI not be used in advertising or publicity pertaining to
13distribution of the software without specific, written prior permission.
14
15STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
16THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
18FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
20ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
21OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22
23******************************************************************/
24
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000025/* Check for interrupts */
26
Guido van Rossum1d5735e1994-08-30 08:27:36 +000027#ifdef HAVE_CONFIG_H
28#include "config.h"
29#endif
30
31#include "myproto.h"
Guido van Rossum189e8f91992-01-19 16:29:05 +000032#include "intrcheck.h"
33
Jack Jansenfebf8111995-01-19 12:12:36 +000034#ifdef macintosh
35#ifdef THINK_C
36#include <OSEvents.h>
37#endif
38#include <Events.h>
39#endif
40
41
Guido van Rossumd6a15ad1991-06-24 22:30:42 +000042
Guido van Rossum1d5735e1994-08-30 08:27:36 +000043#ifdef QUICKWIN
44
45#include <io.h>
46
47void
48initintr()
49{
50}
51
52int
53intrcheck()
54{
55 _wyield();
56}
57
58#define OK
59
60#endif /* QUICKWIN */
61
62#ifdef _M_IX86
63#include <io.h>
64#endif
65
66#if defined(MSDOS) && !defined(QUICKWIN)
67
68#ifdef __GNUC__
69
70/* This is for DJGPP's GO32 extender. I don't know how to trap
71 * control-C (There's no API for ctrl-C, and I don't want to mess with
72 * the interrupt vectors.) However, this DOES catch control-break.
73 * --Amrit
74 */
75
76#include <go32.h>
77
78void
79initintr()
80{
81 _go32_want_ctrl_break(1 /* TRUE */);
82}
83
84int
85intrcheck()
86{
87 return _go32_was_ctrl_break_hit();
88}
89
90#else /* !__GNUC__ */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000091
Guido van Rossum3f5da241990-12-20 15:06:42 +000092/* This might work for MS-DOS (untested though): */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000093
94void
95initintr()
96{
97}
98
99int
100intrcheck()
101{
102 int interrupted = 0;
103 while (kbhit()) {
104 if (getch() == '\003')
105 interrupted = 1;
106 }
107 return interrupted;
108}
109
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000110#endif /* __GNUC__ */
111
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000112#define OK
113
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000114#endif /* MSDOS && !QUICKWIN */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000115
116
Guido van Rossumd6a15ad1991-06-24 22:30:42 +0000117#ifdef macintosh
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000118
Jack Jansen9fc39891995-01-27 14:40:41 +0000119/* The Mac interrupt code has moved to macglue.c */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000120#define OK
121
Guido van Rossumd6a15ad1991-06-24 22:30:42 +0000122#endif /* macintosh */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000123
124
125#ifndef OK
126
Guido van Rossum3f5da241990-12-20 15:06:42 +0000127/* Default version -- for real operating systems and for Standard C */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000128
129#include <stdio.h>
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000130#include <string.h>
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000131#include <signal.h>
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000132
Guido van Rossum62e376b1995-01-17 16:11:53 +0000133static int interrupted;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000134
Guido van Rossumdf840d91992-03-27 17:29:44 +0000135/* ARGSUSED */
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000136static RETSIGTYPE
137#ifdef _M_IX86
138intcatcher(int sig) /* So the C compiler shuts up */
139#else /* _M_IX86 */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000140intcatcher(sig)
Guido van Rossumdf840d91992-03-27 17:29:44 +0000141 int sig; /* Not used by required by interface */
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000142#endif /* _M_IX86 */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000143{
Guido van Rossumf1dc5661993-07-05 10:31:29 +0000144 extern void goaway PROTO((int));
145 static char message[] =
146"python: to interrupt a truly hanging Python program, interrupt once more.\n";
147 switch (interrupted++) {
148 case 0:
149 break;
150 case 1:
151 write(2, message, strlen(message));
152 break;
153 case 2:
154 interrupted = 0;
155 goaway(1);
156 break;
157 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000158 signal(SIGINT, intcatcher);
159}
160
161void
162initintr()
163{
164 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
165 signal(SIGINT, intcatcher);
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000166#ifdef HAVE_SIGINTERRUPT
Guido van Rossumacbe8da1993-04-15 15:33:52 +0000167 /* This is for SunOS and other modern BSD derivatives.
168 It means that system calls (like read()) are not restarted
169 after an interrupt. This is necessary so interrupting a
170 read() or readline() call works as expected.
171 XXX On old BSD (pure 4.2 or older) you may have to do this
172 differently! */
173 siginterrupt(SIGINT, 1);
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000174#endif /* HAVE_SIGINTERRUPT */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000175}
176
177int
178intrcheck()
179{
180 if (!interrupted)
181 return 0;
182 interrupted = 0;
183 return 1;
184}
185
186#endif /* !OK */