1991-02-19 08:39:46 -04:00
|
|
|
/***********************************************************
|
1995-01-04 15:08:09 -04:00
|
|
|
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
|
|
|
|
The Netherlands.
|
1991-02-19 08:39:46 -04: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 09:07:46 -03:00
|
|
|
/* Check for interrupts */
|
|
|
|
|
1994-08-30 05:27:36 -03:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "myproto.h"
|
1992-01-19 12:29:05 -04:00
|
|
|
#include "intrcheck.h"
|
|
|
|
|
1995-01-19 08:12:36 -04:00
|
|
|
#ifdef macintosh
|
|
|
|
#ifdef THINK_C
|
|
|
|
#include <OSEvents.h>
|
|
|
|
#endif
|
|
|
|
#include <Events.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1991-06-24 19:30:42 -03:00
|
|
|
|
1994-08-30 05:27:36 -03:00
|
|
|
#ifdef QUICKWIN
|
|
|
|
|
|
|
|
#include <io.h>
|
|
|
|
|
|
|
|
void
|
|
|
|
initintr()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
intrcheck()
|
|
|
|
{
|
|
|
|
_wyield();
|
|
|
|
}
|
|
|
|
|
|
|
|
#define OK
|
|
|
|
|
|
|
|
#endif /* QUICKWIN */
|
|
|
|
|
|
|
|
#ifdef _M_IX86
|
|
|
|
#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
|
|
|
|
initintr()
|
|
|
|
{
|
|
|
|
_go32_want_ctrl_break(1 /* TRUE */);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
intrcheck()
|
|
|
|
{
|
|
|
|
return _go32_was_ctrl_break_hit();
|
|
|
|
}
|
|
|
|
|
|
|
|
#else /* !__GNUC__ */
|
1990-10-14 09:07:46 -03:00
|
|
|
|
1990-12-20 11:06:42 -04:00
|
|
|
/* This might work for MS-DOS (untested though): */
|
1990-10-14 09:07:46 -03:00
|
|
|
|
|
|
|
void
|
|
|
|
initintr()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
intrcheck()
|
|
|
|
{
|
|
|
|
int interrupted = 0;
|
|
|
|
while (kbhit()) {
|
|
|
|
if (getch() == '\003')
|
|
|
|
interrupted = 1;
|
|
|
|
}
|
|
|
|
return interrupted;
|
|
|
|
}
|
|
|
|
|
1994-08-30 05:27:36 -03:00
|
|
|
#endif /* __GNUC__ */
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
#define OK
|
|
|
|
|
1994-08-30 05:27:36 -03:00
|
|
|
#endif /* MSDOS && !QUICKWIN */
|
1990-10-14 09:07:46 -03:00
|
|
|
|
|
|
|
|
1991-06-24 19:30:42 -03:00
|
|
|
#ifdef macintosh
|
1990-10-14 09:07:46 -03:00
|
|
|
|
1991-07-01 15:46:03 -03:00
|
|
|
#ifdef applec /* MPW */
|
1991-06-24 19:30:42 -03:00
|
|
|
#include <OSEvents.h>
|
|
|
|
#include <SysEqu.h>
|
1994-08-30 05:27:36 -03:00
|
|
|
#endif /* applec */
|
1991-06-24 19:30:42 -03:00
|
|
|
|
1991-01-16 10:04:51 -04:00
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
static int interrupted;
|
|
|
|
|
1994-08-30 05:27:36 -03:00
|
|
|
static RETSIGTYPE intcatcher PROTO((int));
|
|
|
|
static RETSIGTYPE
|
1991-07-01 15:46:03 -03:00
|
|
|
intcatcher(sig)
|
1991-01-16 10:04:51 -04:00
|
|
|
int sig;
|
|
|
|
{
|
|
|
|
interrupted = 1;
|
|
|
|
signal(SIGINT, intcatcher);
|
|
|
|
}
|
1990-10-14 09:07:46 -03:00
|
|
|
|
|
|
|
void
|
|
|
|
initintr()
|
|
|
|
{
|
1991-01-16 10:04:51 -04:00
|
|
|
if (signal(SIGINT, SIG_IGN) != SIG_IGN)
|
|
|
|
signal(SIGINT, intcatcher);
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
1995-01-26 12:20:38 -04:00
|
|
|
#ifdef THINK_C
|
|
|
|
/* MPW and MW runtime catch cmd-. and raise SIGINT, THINK does not, it seems */
|
|
|
|
static void
|
|
|
|
scan_event_queue(flush)
|
|
|
|
int flush;
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
1991-01-16 10:04:51 -04:00
|
|
|
register EvQElPtr q;
|
1990-10-14 09:07:46 -03:00
|
|
|
|
1991-06-24 19:30:42 -03:00
|
|
|
q = (EvQElPtr) GetEvQHdr()->qHead;
|
|
|
|
|
|
|
|
for (; q; q = (EvQElPtr)q->qLink) {
|
1991-01-16 10:04:51 -04:00
|
|
|
if (q->evtQWhat == keyDown &&
|
|
|
|
(char)q->evtQMessage == '.' &&
|
|
|
|
(q->evtQModifiers & cmdKey) != 0) {
|
1995-01-26 12:20:38 -04:00
|
|
|
if ( flush )
|
|
|
|
FlushEvents(keyDownMask, 0);
|
1991-01-16 10:04:51 -04:00
|
|
|
interrupted = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1995-01-26 12:20:38 -04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int
|
|
|
|
intrcheck()
|
|
|
|
{
|
|
|
|
#ifdef THINK_C
|
|
|
|
scan_event_queue(1);
|
|
|
|
#endif
|
|
|
|
PyMac_Yield();
|
1991-01-16 10:04:51 -04:00
|
|
|
if (interrupted) {
|
|
|
|
interrupted = 0;
|
1990-10-14 09:07:46 -03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1995-01-19 08:12:36 -04:00
|
|
|
/* intrpeek() is like intrcheck(), but it doesn't flush the events. The
|
|
|
|
** idea is that you call intrpeek() somewhere in a busy-wait loop, and return
|
1995-01-20 12:58:43 -04:00
|
|
|
** None as soon as it returns 1. The mainloop will then pick up the cmd-. soon
|
1995-01-19 08:12:36 -04:00
|
|
|
** thereafter.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
intrpeek()
|
|
|
|
{
|
1995-01-26 12:20:38 -04:00
|
|
|
#ifdef THINK_C
|
|
|
|
scan_event_queue(0);
|
|
|
|
#endif
|
|
|
|
return interrupted;
|
1995-01-19 08:12:36 -04:00
|
|
|
}
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
#define OK
|
|
|
|
|
1991-06-24 19:30:42 -03:00
|
|
|
#endif /* macintosh */
|
1990-10-14 09:07:46 -03:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef OK
|
|
|
|
|
1990-12-20 11:06:42 -04:00
|
|
|
/* Default version -- for real operating systems and for Standard C */
|
1990-10-14 09:07:46 -03:00
|
|
|
|
|
|
|
#include <stdio.h>
|
1994-08-30 05:27:36 -03:00
|
|
|
#include <string.h>
|
1990-10-14 09:07:46 -03:00
|
|
|
#include <signal.h>
|
|
|
|
|
1995-01-17 12:11:53 -04:00
|
|
|
static int interrupted;
|
1990-10-14 09:07:46 -03:00
|
|
|
|
1992-03-27 13:29:44 -04:00
|
|
|
/* ARGSUSED */
|
1994-08-30 05:27:36 -03:00
|
|
|
static RETSIGTYPE
|
|
|
|
#ifdef _M_IX86
|
|
|
|
intcatcher(int sig) /* So the C compiler shuts up */
|
|
|
|
#else /* _M_IX86 */
|
1990-10-14 09:07:46 -03:00
|
|
|
intcatcher(sig)
|
1992-03-27 13:29:44 -04:00
|
|
|
int sig; /* Not used by required by interface */
|
1994-08-30 05:27:36 -03:00
|
|
|
#endif /* _M_IX86 */
|
1990-10-14 09:07:46 -03:00
|
|
|
{
|
1993-07-05 07:31:29 -03:00
|
|
|
extern void goaway PROTO((int));
|
|
|
|
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;
|
|
|
|
goaway(1);
|
|
|
|
break;
|
|
|
|
}
|
1990-10-14 09:07:46 -03:00
|
|
|
signal(SIGINT, intcatcher);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
initintr()
|
|
|
|
{
|
|
|
|
if (signal(SIGINT, SIG_IGN) != SIG_IGN)
|
|
|
|
signal(SIGINT, intcatcher);
|
1994-08-30 05:27:36 -03:00
|
|
|
#ifdef HAVE_SIGINTERRUPT
|
1993-04-15 12:33:52 -03: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 05:27:36 -03:00
|
|
|
#endif /* HAVE_SIGINTERRUPT */
|
1990-10-14 09:07:46 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
intrcheck()
|
|
|
|
{
|
|
|
|
if (!interrupted)
|
|
|
|
return 0;
|
|
|
|
interrupted = 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* !OK */
|