From bf44fc4dbb41946283beb9c604b857adfbab59d4 Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Tue, 25 Mar 2003 23:57:38 +0000 Subject: [PATCH] * null-threads.h: replace usage of struct timespect with scm_t_timespec. --- libguile/null-threads.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/null-threads.h b/libguile/null-threads.h index 14d40eea2..458f123e9 100644 --- a/libguile/null-threads.h +++ b/libguile/null-threads.h @@ -123,7 +123,7 @@ SCM_API void scm_cond_init (scm_t_cond *cv); SCM_API void scm_cond_destroy (scm_t_cond *cv); SCM_API void scm_cond_wait (scm_t_cond *cv, scm_t_mutex *mx); SCM_API int scm_cond_timedwait (scm_t_cond *cv, scm_t_mutex *mx, - struct timespec *abstime); + scm_t_timespec *abstime); SCM_API void scm_cond_signal (scm_t_cond *cv); SCM_API void scm_cond_broadcast (scm_t_cond *cv);