1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* null-threads.h: replace usage of struct timespect with

scm_t_timespec.
This commit is contained in:
Rob Browning 2003-03-25 23:57:38 +00:00
parent 83b429ed5d
commit bf44fc4dbb

View file

@ -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_destroy (scm_t_cond *cv);
SCM_API void scm_cond_wait (scm_t_cond *cv, scm_t_mutex *mx); 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, 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_signal (scm_t_cond *cv);
SCM_API void scm_cond_broadcast (scm_t_cond *cv); SCM_API void scm_cond_broadcast (scm_t_cond *cv);