1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

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

scm_t_timespec.
This commit is contained in:
Rob Browning 2003-03-26 00:01:10 +00:00
parent 1f7f41e489
commit dcb0911f40

View file

@ -85,7 +85,7 @@ extern scm_t_rec_mutex_unlock scm_i_plugin_rec_mutex_unlock;
typedef int (*scm_t_cond_wait) (scm_t_cond *, scm_t_mutex *);
typedef int (*scm_t_cond_timedwait) (scm_t_cond *,
scm_t_mutex *,
const struct timespec *);
const scm_t_timespec *);
extern scm_t_cond_wait scm_i_plugin_cond_wait;
extern scm_t_cond_timedwait scm_i_plugin_cond_timedwait;