From b7b6a116e66a8315917724d66240428f050f6c7e Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Thu, 19 Dec 2002 08:00:23 +0000 Subject: [PATCH] Added back two macros used when debugging. (Got lost by mistake during a recent change.) --- libguile/threads-plugin.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libguile/threads-plugin.c b/libguile/threads-plugin.c index e6671daf1..08bb3eee7 100644 --- a/libguile/threads-plugin.c +++ b/libguile/threads-plugin.c @@ -60,6 +60,11 @@ int (*scm_i_plugin_cond_timedwait) (scm_t_cond *, scm_t_mutex *, const struct timespec *); +#ifdef SCM_DEBUG_THREADS +#define FAST_MUTEX 1 +#define REC_MUTEX 2 +#endif + typedef struct rec_mutex { #ifdef SCM_DEBUG_THREADS int kind;