diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2002-12-18 14:15:11 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2002-12-18 14:15:11 +0000 |
commit | b21dcf17d73420e33330aa71af61cbc1e414b114 (patch) | |
tree | 6f106e7408ce6e332dde22ad43f53642d925b226 /libguile/pthread-threads.c | |
parent | 29717c89316bb94c95a90107553a47f5ee5fb4e3 (diff) | |
download | guile-b21dcf17d73420e33330aa71af61cbc1e414b114.tar.gz |
Fix
Diffstat (limited to 'libguile/pthread-threads.c')
-rw-r--r-- | libguile/pthread-threads.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libguile/pthread-threads.c b/libguile/pthread-threads.c index ea2cc9888..531cbb4ab 100644 --- a/libguile/pthread-threads.c +++ b/libguile/pthread-threads.c @@ -77,6 +77,9 @@ scm_init_pthread_threads () scm_i_plugin_rec_mutex_unlock = (scm_t_rec_mutex_unlock) pthread_mutex_unlock; #endif + scm_i_plugin_cond_wait = (scm_t_cond_wait) pthread_cond_wait; + scm_i_plugin_cond_timedwait = (scm_t_cond_timedwait) pthread_cond_timedwait; + scm_init_threads_plugin (); } |