diff options
author | Rob Browning <rlb@defaultvalue.org> | 2003-03-26 00:01:10 +0000 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2003-03-26 00:01:10 +0000 |
commit | dcb0911f40df4cfc522b84f3fa6496e6c27b1249 (patch) | |
tree | 8b0f2237f21a0543f83b60136ba3968248b5fc09 /libguile/threads-plugin.h | |
parent | 1f7f41e4894f5ccc4de3f2b63df44467b8d257c4 (diff) | |
download | guile-dcb0911f40df4cfc522b84f3fa6496e6c27b1249.tar.gz |
* threads-plugin.h: replace usage of struct timespect with
scm_t_timespec.
Diffstat (limited to 'libguile/threads-plugin.h')
-rw-r--r-- | libguile/threads-plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/threads-plugin.h b/libguile/threads-plugin.h index 3e0eb2096..384838055 100644 --- a/libguile/threads-plugin.h +++ b/libguile/threads-plugin.h @@ -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; |