diff options
author | Marius Vollmer <mvo@zagadka.de> | 2005-01-24 19:14:54 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2005-01-24 19:14:54 +0000 |
commit | a54a94b39707f47a1f30533bcf7664094d65d073 (patch) | |
tree | 69a524a4c3fbb084e1e2fef05da61e1852700909 /libguile/__scm.h | |
parent | be1b896c82273d97b79cd839d7281b46e54920f8 (diff) | |
download | guile-a54a94b39707f47a1f30533bcf7664094d65d073.tar.gz |
Threading changes.
Diffstat (limited to 'libguile/__scm.h')
-rw-r--r-- | libguile/__scm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/__scm.h b/libguile/__scm.h index 6ab774cd6..8fbd43c83 100644 --- a/libguile/__scm.h +++ b/libguile/__scm.h @@ -508,9 +508,9 @@ do { \ (private or global, with unwind where necessary), and remove the remaining DEFER/ALLOWs. */ -#define SCM_DEFER_INTS scm_rec_mutex_lock (&scm_i_defer_mutex); +#define SCM_DEFER_INTS do { } while (0); -#define SCM_ALLOW_INTS scm_rec_mutex_unlock (&scm_i_defer_mutex); +#define SCM_ALLOW_INTS do { } while (0); #define SCM_REDEFER_INTS SCM_DEFER_INTS |