1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 20:00:19 +02:00
guile/libguile/async.c
Gary Houston e1a191a8ca * scmsigs.h, async.h: updated.
* _scm.h: if HAVE_RESTARTS is defined then don't use a SYSCALL
loop.

* posix.c (scm_uname): interpret only negative values as an error.
Solaris normally returns a positive value.

* script.c (scm_compile_shell_switches): if we are not going into
an interactive repl, set scm_mask_ints to zero so that asyncs can
run.

* simpos.c (scm_system):  don't ignore/unignore signals around
the "system" call.

* posix.c (scm_open_pipe): don't ignore/unignore signals around
the "popen" call.

* init.c (scm_boot_guile_1): don't call scm_init_signals, it's
done in boot-9.scm instead.

* scmsigs.c, async.c: Major rewriting of signal handling code.
(scm_sigaction): new procedure.
(scm_sleep): don't wrap sleep in SCM_SYSCALL, it would mess up the
timing.
(scm_raise): return unspecified, throw error on failure.

* boot-9.scm: signal-handler, alarm-thunk: removed.
don't define ticks-interrupt etc.
top-repl: install signal handlers for SIGINT, SIGFPE, SIGSEGV, SIGBUS
during call to scm-style-repl.

* acconfig.h: mention HAVE_RESTARTS.
* configure.in: check for sigaction and restartable system calls.
1997-05-31 19:02:38 +00:00

532 lines
11 KiB
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* Copyright (C) 1995,1996,1997 Free Software Foundation, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA
*
* As a special exception, the Free Software Foundation gives permission
* for additional uses of the text contained in its release of GUILE.
*
* The exception is that, if you link the GUILE library with other files
* to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the GUILE library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the
* Free Software Foundation under the name GUILE. If you copy
* code from other Free Software Foundation releases into a copy of
* GUILE, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for GUILE, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice. */
#include <stdio.h>
#include <signal.h>
#include "_scm.h"
#include "eval.h"
#include "throw.h"
#include "smob.h"
#include "async.h"
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
/* {Asynchronous Events}
*
*
* Async == thunk + mark.
*
* Setting the mark guarantees future execution of the thunk. More
* than one set may be satisfied by a single execution.
*
* scm_tick_clock decremented once per SCM_ALLOW_INTS.
* Async execution triggered by SCM_ALLOW_INTS when scm_tick_clock drops to 0.
* Async execution prevented by scm_mask_ints != 0.
*
* If the clock reaches 0 when scm_mask_ints != 0, then reset the clock
* to 1.
*
* If the clock reaches 0 any other time, run marked asyncs.
*
* From a unix signal handler, mark a corresponding async and set the clock
* to 1. Do SCM_REDEFER_INTS;/SCM_REALLOW_INTS so that if the signal handler is not
* called in the dynamic scope of a critical section, it is excecuted immediately.
*
* Overall, closely timed signals of a particular sort may be combined. Pending signals
* are delivered in a fixed priority order, regardless of arrival order.
*
*/
/* True between SCM_DEFER_INTS and SCM_ALLOW_INTS, and
* when the interpreter is not running at all.
*/
int scm_ints_disabled = 1;
unsigned int scm_async_clock = 20;
static unsigned int scm_async_rate = 20;
unsigned int scm_mask_ints = 1;
static unsigned int scm_tick_clock = 0;
static unsigned int scm_tick_rate = 0;
static unsigned int scm_desired_tick_rate = 0;
static unsigned int scm_switch_clock = 0;
static unsigned int scm_switch_rate = 0;
static unsigned int scm_desired_switch_rate = 0;
static long scm_tc16_async;
static int asyncs_pending SCM_P ((void));
static int
asyncs_pending ()
{
SCM pos;
pos = scm_asyncs;
while (pos != SCM_EOL)
{
SCM a;
struct scm_async * it;
a = SCM_CAR (pos);
it = SCM_ASYNC (a);
if (it->got_it)
return 1;
pos = SCM_CDR (pos);
}
return 0;
}
#if 0
static SCM scm_sys_tick_async_thunk SCM_P ((void));
static SCM
scm_sys_tick_async_thunk ()
{
scm_deliver_signal (SCM_TICK_SIGNAL);
return SCM_BOOL_F;
}
#endif
void
scm_async_click ()
{
int owe_switch;
int owe_tick;
if (!scm_switch_rate)
{
owe_switch = 0;
scm_switch_clock = scm_switch_rate = scm_desired_switch_rate;
scm_desired_switch_rate = 0;
}
else
{
owe_switch = (scm_async_rate >= scm_switch_clock);
if (owe_switch)
{
if (scm_desired_switch_rate)
{
scm_switch_clock = scm_switch_rate = scm_desired_switch_rate;
scm_desired_switch_rate = 0;
}
else
scm_switch_clock = scm_switch_rate;
}
else
{
if (scm_desired_switch_rate)
{
scm_switch_clock = scm_switch_rate = scm_desired_switch_rate;
scm_desired_switch_rate = 0;
}
else
scm_switch_clock -= scm_async_rate;
}
}
if (scm_mask_ints)
{
if (owe_switch)
scm_switch ();
scm_async_clock = 1;
return;;
}
if (!scm_tick_rate)
{
unsigned int r;
owe_tick = 0;
r = scm_desired_tick_rate;
if (r)
{
scm_desired_tick_rate = 0;
scm_tick_rate = r;
scm_tick_clock = r;
}
}
else
{
owe_tick = (scm_async_rate >= scm_tick_clock);
if (owe_tick)
{
scm_tick_clock = scm_tick_rate = scm_desired_tick_rate;
scm_desired_tick_rate = 0;
}
else
{
if (scm_desired_tick_rate)
{
scm_tick_clock = scm_tick_rate = scm_desired_tick_rate;
scm_desired_tick_rate = 0;
}
else
scm_tick_clock -= scm_async_rate;
}
}
/*
if (owe_tick)
scm_async_mark (system_signal_asyncs[SCM_SIG_ORD(SCM_TICK_SIGNAL)]);
*/
SCM_DEFER_INTS;
if (scm_tick_rate && scm_switch_rate)
{
scm_async_rate = min (scm_tick_clock, scm_switch_clock);
scm_async_clock = scm_async_rate;
}
else if (scm_tick_rate)
{
scm_async_clock = scm_async_rate = scm_tick_clock;
}
else if (scm_switch_rate)
{
scm_async_clock = scm_async_rate = scm_switch_clock;
}
else
scm_async_clock = scm_async_rate = 1 << 16;
SCM_ALLOW_INTS_ONLY;
tail:
scm_run_asyncs (scm_asyncs);
SCM_DEFER_INTS;
if (asyncs_pending ())
{
SCM_ALLOW_INTS_ONLY;
goto tail;
}
SCM_ALLOW_INTS;
if (owe_switch)
scm_switch ();
}
void
scm_switch ()
{
#if 0 /* Thread switching code should probably reside here, but the
async switching code doesn't seem to work, so it's put in the
SCM_ASYNC_TICK macro instead. /mdj */
SCM_THREAD_SWITCHING_CODE;
#endif
}
static int print_async SCM_P ((SCM exp, SCM port, scm_print_state *pstate));
static int
print_async (exp, port, pstate)
SCM exp;
SCM port;
scm_print_state *pstate;
{
scm_gen_puts (scm_regular_string, "#<async ", port);
scm_intprint(exp, 16, port);
scm_gen_putc('>', port);
return 1;
}
static SCM mark_async SCM_P ((SCM obj));
static SCM
mark_async (obj)
SCM obj;
{
struct scm_async * it;
if (SCM_GC8MARKP (obj))
return SCM_BOOL_F;
SCM_SETGC8MARK (obj);
it = SCM_ASYNC (obj);
return it->thunk;
}
static scm_sizet free_async SCM_P ((SCM obj));
static scm_sizet
free_async (obj)
SCM obj;
{
struct scm_async * it;
it = SCM_ASYNC (obj);
scm_must_free ((char *)it);
return (sizeof (*it));
}
static scm_smobfuns async_smob =
{
mark_async,
free_async,
print_async,
0
};
SCM_PROC(s_async, "async", 1, 0, 0, scm_async);
SCM
scm_async (thunk)
SCM thunk;
{
SCM it;
struct scm_async * async;
SCM_NEWCELL (it);
SCM_DEFER_INTS;
SCM_SETCDR (it, SCM_EOL);
async = (struct scm_async *)scm_must_malloc (sizeof (*async), s_async);
async->got_it = 0;
async->thunk = thunk;
SCM_SETCDR (it, (SCM)async);
SCM_SETCAR (it, (SCM)scm_tc16_async);
SCM_ALLOW_INTS;
return it;
}
SCM_PROC(s_system_async, "system-async", 1, 0, 0, scm_system_async);
SCM
scm_system_async (thunk)
SCM thunk;
{
SCM it;
SCM list;
it = scm_async (thunk);
SCM_NEWCELL (list);
SCM_DEFER_INTS;
SCM_SETCAR (list, it);
SCM_SETCDR (list, scm_asyncs);
scm_asyncs = list;
SCM_ALLOW_INTS;
return it;
}
SCM_PROC(s_async_mark, "async-mark", 1, 0, 0, scm_async_mark);
SCM
scm_async_mark (a)
SCM a;
{
struct scm_async * it;
SCM_ASSERT (SCM_NIMP (a) && SCM_ASYNCP (a), a, SCM_ARG1, s_async_mark);
it = SCM_ASYNC (a);
it->got_it = 1;
return SCM_UNSPECIFIED;
}
SCM_PROC(s_system_async_mark, "system-async-mark", 1, 0, 0, scm_system_async_mark);
SCM
scm_system_async_mark (a)
SCM a;
{
struct scm_async * it;
SCM_ASSERT (SCM_NIMP (a) && SCM_ASYNCP (a), a, SCM_ARG1, s_async_mark);
it = SCM_ASYNC (a);
SCM_REDEFER_INTS;
it->got_it = 1;
scm_async_rate = 1 + scm_async_rate - scm_async_clock;
scm_async_clock = 1;
SCM_REALLOW_INTS;
return SCM_UNSPECIFIED;
}
SCM_PROC(s_run_asyncs, "run-asyncs", 1, 0, 0, scm_run_asyncs);
SCM
scm_run_asyncs (list_of_a)
SCM list_of_a;
{
SCM pos;
if (scm_mask_ints)
return SCM_BOOL_F;
pos = list_of_a;
while (pos != SCM_EOL)
{
SCM a;
struct scm_async * it;
SCM_ASSERT (SCM_NIMP (pos) && SCM_CONSP (pos), pos, SCM_ARG1, s_run_asyncs);
a = SCM_CAR (pos);
SCM_ASSERT (SCM_NIMP (a) && SCM_ASYNCP (a), a, SCM_ARG1, s_run_asyncs);
it = SCM_ASYNC (a);
scm_mask_ints = 1;
if (it->got_it)
{
it->got_it = 0;
scm_apply (it->thunk, SCM_EOL, SCM_EOL);
}
scm_mask_ints = 0;
pos = SCM_CDR (pos);
}
return SCM_BOOL_T;
}
SCM_PROC(s_noop, "noop", 0, 0, 1, scm_noop);
SCM
scm_noop (args)
SCM args;
{
return (SCM_NULLP (args)
? SCM_BOOL_F
: SCM_CAR (args));
}
SCM_PROC(s_set_tick_rate, "set-tick-rate", 1, 0, 0, scm_set_tick_rate);
SCM
scm_set_tick_rate (n)
SCM n;
{
unsigned int old_n;
SCM_ASSERT (SCM_INUMP (n), n, SCM_ARG1, s_set_tick_rate);
old_n = scm_tick_rate;
scm_desired_tick_rate = SCM_INUM (n);
scm_async_rate = 1 + scm_async_rate - scm_async_clock;
scm_async_clock = 1;
return SCM_MAKINUM (old_n);
}
SCM_PROC(s_set_switch_rate, "set-switch-rate", 1, 0, 0, scm_set_switch_rate);
SCM
scm_set_switch_rate (n)
SCM n;
{
unsigned int old_n;
SCM_ASSERT (SCM_INUMP (n), n, SCM_ARG1, s_set_switch_rate);
old_n = scm_switch_rate;
scm_desired_switch_rate = SCM_INUM (n);
scm_async_rate = 1 + scm_async_rate - scm_async_clock;
scm_async_clock = 1;
return SCM_MAKINUM (old_n);
}
/* points to the GC system-async, so that scm_gc_end can find it. */
SCM scm_gc_async;
/* the vcell for gc-thunk. */
static SCM scm_gc_vcell;
/* the thunk installed in the GC system-async, which is marked at the
end of garbage collection. */
static SCM
scm_sys_gc_async_thunk (void)
{
if (SCM_NFALSEP (scm_gc_vcell))
{
SCM proc = SCM_CDR (scm_gc_vcell);
if (SCM_NFALSEP (proc) && !SCM_UNBNDP (proc))
scm_apply (proc, SCM_EOL, SCM_EOL);
}
return SCM_UNSPECIFIED;
}
SCM_PROC(s_unmask_signals, "unmask-signals", 0, 0, 0, scm_unmask_signals);
SCM
scm_unmask_signals ()
{
scm_mask_ints = 0;
return SCM_UNSPECIFIED;
}
SCM_PROC(s_mask_signals, "mask-signals", 0, 0, 0, scm_mask_signals);
SCM
scm_mask_signals ()
{
scm_mask_ints = 1;
return SCM_UNSPECIFIED;
}
void
scm_init_async ()
{
SCM a_thunk;
scm_tc16_async = scm_newsmob (&async_smob);
scm_gc_vcell = scm_sysintern ("gc-thunk", SCM_BOOL_F);
a_thunk = scm_make_gsubr ("%gc-thunk", 0, 0, 0, scm_sys_gc_async_thunk);
scm_gc_async = scm_system_async (a_thunk);
#include "async.x"
}