blob: dd53a1acc26b284b5e76df6b0407b3a7140c1d2a [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 Rossum575d5611995-03-10 15:13:03 +0000127void
128PyErr_SetInterrupt()
129{
130 interrupted = 1;
131}
132
Guido van Rossumdf840d91992-03-27 17:29:44 +0000133/* ARGSUSED */
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000134static RETSIGTYPE
135#ifdef _M_IX86
136intcatcher(int sig) /* So the C compiler shuts up */
137#else /* _M_IX86 */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000138intcatcher(sig)
Guido van Rossumdf840d91992-03-27 17:29:44 +0000139 int sig; /* Not used by required by interface */
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000140#endif /* _M_IX86 */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000141{
Guido van Rossumf1dc5661993-07-05 10:31:29 +0000142 extern void goaway PROTO((int));
143 static char message[] =
144"python: to interrupt a truly hanging Python program, interrupt once more.\n";
145 switch (interrupted++) {
146 case 0:
147 break;
148 case 1:
149 write(2, message, strlen(message));
150 break;
151 case 2:
152 interrupted = 0;
153 goaway(1);
154 break;
155 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000156 signal(SIGINT, intcatcher);
157}
158
159void
160initintr()
161{
162 if (signal(SIGINT, SIG_IGN) != SIG_IGN)
163 signal(SIGINT, intcatcher);
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000164#ifdef HAVE_SIGINTERRUPT
Guido van Rossumacbe8da1993-04-15 15:33:52 +0000165 /* This is for SunOS and other modern BSD derivatives.
166 It means that system calls (like read()) are not restarted
167 after an interrupt. This is necessary so interrupting a
168 read() or readline() call works as expected.
169 XXX On old BSD (pure 4.2 or older) you may have to do this
170 differently! */
171 siginterrupt(SIGINT, 1);
Guido van Rossum1d5735e1994-08-30 08:27:36 +0000172#endif /* HAVE_SIGINTERRUPT */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000173}
174
175int
176intrcheck()
177{
178 if (!interrupted)
179 return 0;
180 interrupted = 0;
181 return 1;
182}
183
184#endif /* !OK */