From 62af908b2743c6d2b3c84cfaa1aa2cd3af56ff98 Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Mon, 25 Jun 2001 00:56:41 +0000 Subject: [PATCH] * srcprop.h, srcprop.c (scm_srcprops_to_plist): Renamed from scm_t_srcpropso_plist. See the big type renaming. * coop-defs.h (scm_mutex_trylock, scm_cond_timedwait): Likewise. --- libguile/coop-defs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libguile/coop-defs.h b/libguile/coop-defs.h index 86033ad37..ad2deb1d4 100644 --- a/libguile/coop-defs.h +++ b/libguile/coop-defs.h @@ -153,7 +153,7 @@ extern int coop_mutex_unlock (coop_m*); extern int coop_mutex_destroy (coop_m*); #define scm_mutex_init coop_mutex_init #define scm_mutex_lock coop_mutex_lock -#define scm_t_mutexrylock coop_mutex_lock +#define scm_mutex_trylock coop_mutex_lock #define scm_mutex_unlock coop_mutex_unlock #define scm_mutex_destroy coop_mutex_destroy @@ -188,7 +188,7 @@ extern int coop_condition_variable_signal (coop_c*); extern int coop_condition_variable_destroy (coop_c*); #define scm_cond_init coop_new_condition_variable_init #define scm_cond_wait coop_condition_variable_wait_mutex -#define scm_t_condimedwait coop_condition_variable_timed_wait_mutex +#define scm_cond_timedwait coop_condition_variable_timed_wait_mutex #define scm_cond_signal coop_condition_variable_signal #define scm_cond_broadcast coop_condition_variable_signal /* yes */ #define scm_cond_destroy coop_condition_variable_destroy