diff options
author | Gary Houston <ghouston@arglist.com> | 1999-09-18 17:13:38 +0000 |
---|---|---|
committer | Gary Houston <ghouston@arglist.com> | 1999-09-18 17:13:38 +0000 |
commit | 08b8c6948da44bb5cdcc6077ae207dd19319672e (patch) | |
tree | c6ec7f3f1c1f49b969ae78048f1fb7638780ef99 /libguile/scmsigs.c | |
parent | e684c60f44de155f5949d947c57baca870f827af (diff) | |
download | guile-08b8c6948da44bb5cdcc6077ae207dd19319672e.tar.gz |
1999-09-18 Gary Houston <ghouston@freewire.co.uk>
* configure.in: use AC_SYS_RESTARTABLE_SYSCALLS instead of
testing for SA_RESTART.
1999-09-18 Gary Houston <ghouston@freewire.co.uk>
* _scm.h, scmsigs.c: replace HAVE_RESTARTS with
HAVE_RESTARTABLE_SYSCALLS.
Diffstat (limited to 'libguile/scmsigs.c')
-rw-r--r-- | libguile/scmsigs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/scmsigs.c b/libguile/scmsigs.c index f8daff4ef..ede2df30e 100644 --- a/libguile/scmsigs.c +++ b/libguile/scmsigs.c @@ -441,7 +441,7 @@ scm_init_scmsigs () orig_handlers[i] = SIG_ERR; #endif -#ifdef HAVE_RESTARTS +#ifdef HAVE_RESTARTABLE_SYSCALLS /* ensure that system calls will be restarted for all signals. */ /* sigintterupt would be simpler, but it seems better to avoid dependency on another system call. */ |