diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2002-12-10 09:35:06 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2002-12-10 09:35:06 +0000 |
commit | c7fabadfe0161ca9fd2989179a3b3f387d3f8258 (patch) | |
tree | 153d7856b0442c9046eb6dd2ed767425d767f1a2 /libguile/async.c | |
parent | 06babeccd19cbabf723853ec712df84f8f6b1f1b (diff) | |
download | guile-c7fabadfe0161ca9fd2989179a3b3f387d3f8258.tar.gz |
* async.c, error.h (scm_ints_disabled): Removed.
* gc.c (scm_gc_for_newcell), init.c (scm_init_guile_1),
root.c (scm_internal_cwdr), gdbint.c (SCM_BEGIN_FOREIGN_BLOCK,
SCM_END_FOREIGN_BLOCK): Don't touch scm_ints_disabled.
(old_ints): Removed.
* __scm.h (SCM_DEFER_INTS, SCM_ALLOW_INTS): Define as a recursive
critical section.
(SCM_REDEFER_INTS, SCM_ALLOW_INTS): Define as SCM_DEFER_INTS and
SCM_ALLOW_INTS.
Diffstat (limited to 'libguile/async.c')
-rw-r--r-- | libguile/async.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libguile/async.c b/libguile/async.c index d68be47f5..38e5ca22f 100644 --- a/libguile/async.c +++ b/libguile/async.c @@ -62,11 +62,6 @@ #include <unistd.h> #endif -/* This is not used for anything except checking that DEFER_INTS and - ALLOW_INTS are used properly. - */ -int scm_ints_disabled = 1; - /* {Asynchronous Events} * |