From 06babeccd19cbabf723853ec712df84f8f6b1f1b Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Tue, 10 Dec 2002 08:54:48 +0000 Subject: [PATCH] *** empty log message *** --- libguile/threads.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libguile/threads.c b/libguile/threads.c index 99c957d3e..cc3c72838 100644 --- a/libguile/threads.c +++ b/libguile/threads.c @@ -1070,10 +1070,10 @@ scm_cond_wait (scm_t_cond *c, scm_t_mutex *m) } int -scm_cond_timedwait (scm_t_cond *c, scm_t_mutex *m) +scm_cond_timedwait (scm_t_cond *c, scm_t_mutex *m, const struct timespec *wt) { scm_thread *t = scm_i_leave_guile (); - int res = scm_i_plugin_cond_timedwait (c, m); + int res = scm_i_plugin_cond_timedwait (c, m, wt); scm_i_enter_guile (t); return res; }