See ChangeLog from 2005-03-02.
[bpt/guile.git] / libguile / futures.h
index 2654be1..0c3b0b0 100644 (file)
@@ -29,8 +29,8 @@
 
 typedef struct scm_t_future {
   SCM data;
-  scm_t_mutex mutex;
-  scm_t_cond cond;
+  scm_i_pthread_mutex_t mutex;
+  scm_i_pthread_cond_t cond;
   int status;
   int die_p;
 } scm_t_future;