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

It's scm_t_cond, not scm_t_condvar.

This commit is contained in:
Marius Vollmer 2002-10-16 16:25:45 +00:00
parent 8ef70d1e3c
commit 7751157e03

View file

@ -145,7 +145,7 @@ scm_init_threads (SCM_STACKITEM *i)
scm_tc16_thread = scm_make_smob_type ("thread", 0);
scm_tc16_mutex = scm_make_smob_type ("mutex", sizeof (scm_t_mutex));
scm_tc16_condvar = scm_make_smob_type ("condition-variable",
sizeof (scm_t_condvar));
sizeof (scm_t_cond));
#include "libguile/threads.x"
/* Initialize implementation specific details of the threads support */