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

Merge commit 'ab878b0f8e' into vm-check

This commit is contained in:
Andy Wingo 2009-03-17 15:57:07 +01:00
commit 3924b91748
3 changed files with 3 additions and 1 deletions

1
NEWS
View file

@ -47,6 +47,7 @@ Changes in 1.8.7 (since 1.8.6)
** Fix %fast-slot-ref/set!, to avoid possible segmentation fault ** Fix %fast-slot-ref/set!, to avoid possible segmentation fault
** Fix MinGW build problem caused by HAVE_STRUCT_TIMESPEC confusion ** Fix MinGW build problem caused by HAVE_STRUCT_TIMESPEC confusion
** Fix build problem when scm_t_timespec is different from struct timespec
Changes in 1.8.6 (since 1.8.5) Changes in 1.8.6 (since 1.8.5)

1
THANKS
View file

@ -43,6 +43,7 @@ For fixes or providing information which led to a fix:
John Goerzen John Goerzen
Mike Gran Mike Gran
Szavai Gyula Szavai Gyula
Roland Haeder
Sven Hartrumpf Sven Hartrumpf
Eric Hanchrow Eric Hanchrow
Sam Hocevar Sam Hocevar

View file

@ -233,7 +233,7 @@ SCM_API int scm_pthread_cond_wait (pthread_cond_t *cond,
pthread_mutex_t *mutex); pthread_mutex_t *mutex);
SCM_API int scm_pthread_cond_timedwait (pthread_cond_t *cond, SCM_API int scm_pthread_cond_timedwait (pthread_cond_t *cond,
pthread_mutex_t *mutex, pthread_mutex_t *mutex,
const struct timespec *abstime); const scm_t_timespec *abstime);
#endif #endif
/* More convenience functions. /* More convenience functions.