blob: 2529655ccc6afa59d9d7fe54c2906dd750c6acd2 [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
Guido van Rossumd6a15ad1991-06-24 22:30:42 +000034
Guido van Rossum1d5735e1994-08-30 08:27:36 +000035#ifdef QUICKWIN
36
37#include <io.h>
38
39void
40initintr()
41{
42}
43
44int
45intrcheck()
46{
47 _wyield();
48}
49
50#define OK
51
52#endif /* QUICKWIN */
53
54#ifdef _M_IX86
55#include <io.h>
56#endif
57
58#if defined(MSDOS) && !defined(QUICKWIN)
59
60#ifdef __GNUC__
61
62/* This is for DJGPP's GO32 extender. I don't know how to trap
63 * control-C (There's no API for ctrl-C, and I don't want to mess with
64 * the interrupt vectors.) However, this DOES catch control-break.
65 * --Amrit
66 */
67
68#include <go32.h>
69
70void
71initintr()
72{
73 _go32_want_ctrl_break(1 /* TRUE */);
74}
75
76int
77intrcheck()
78{
79 return _go32_was_ctrl_break_hit();
80}
81
82#else /* !__GNUC__ */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000083
Guido van Rossum3f5da241990-12-20 15:06:42 +000084/* This might work for MS-DOS (untested though): */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000085
86void
87initintr()
88{
89}
90
91int
92intrcheck()
93{
94 int interrupted = 0;
95 while (kbhit()) {
96 if (getch() == '\003')
97 interrupted = 1;
98 }
99 return interrupted;
100}
101
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000102#endif /* __GNUC__ */
103
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000104#define OK
105
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000106#endif /* MSDOS && !QUICKWIN */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000107
108
Guido van Rossumd6a15ad1991-06-24 22:30:42 +0000109#ifdef macintosh
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000110
Jack Jansen9fc39891995-01-27 14:40:41 +0000111/* The Mac interrupt code has moved to macglue.c */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000112#define OK
113
Guido van Rossumd6a15ad1991-06-24 22:30:42 +0000114#endif /* macintosh */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000115
116
117#ifndef OK
118
Guido van Rossum3f5da241990-12-20 15:06:42 +0000119/* Default version -- for real operating systems and for Standard C */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000120
121#include <stdio.h>
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000122#include <string.h>
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000123#include <signal.h>
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000124
Guido van Rossum62e376b1995-01-17 16:11:53 +0000125static int interrupted;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000126
Guido van Rossumdf840d91992-03-27 17:29:44 +0000127/* ARGSUSED */
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000128static RETSIGTYPE
129#ifdef _M_IX86
130intcatcher(int sig) /* So the C compiler shuts up */
131#else /* _M_IX86 */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000132intcatcher(sig)
Guido van Rossumdf840d91992-03-27 17:29:44 +0000133 int sig; /* Not used by required by interface */
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000134#endif /* _M_IX86 */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000135{
Guido van Rossumf1dc5661993-07-05 10:31:29 +0000136 extern void goaway PROTO((int));
137 static char message[] =
138"python: to interrupt a truly hanging Python program, interrupt once more.\n";
139 switch (interrupted++) {
140 case 0:
141 break;
142 case 1:
143 write(2, message, strlen(message));
144 break;
145 case 2:
146 interrupted = 0;
147 goaway(1);
148 break;
149 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000150 signal(SIGINT, intcatcher);
151}
152
153void
154initintr()
155{
156 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
157 signal(SIGINT, intcatcher);
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000158#ifdef HAVE_SIGINTERRUPT
Guido van Rossumacbe8da1993-04-15 15:33:52 +0000159 /* This is for SunOS and other modern BSD derivatives.
160 It means that system calls (like read()) are not restarted
161 after an interrupt. This is necessary so interrupting a
162 read() or readline() call works as expected.
163 XXX On old BSD (pure 4.2 or older) you may have to do this
164 differently! */
165 siginterrupt(SIGINT, 1);
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000166#endif /* HAVE_SIGINTERRUPT */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000167}
168
169int
170intrcheck()
171{
172 if (!interrupted)
173 return 0;
174 interrupted = 0;
175 return 1;
176}
177
178#endif /* !OK */