From 29e61124410f18bc17805aa2d3cedbbae71bd815 Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Thu, 5 Aug 2004 00:46:34 +0000 Subject: [PATCH] *** empty log message *** --- doc/ref/ChangeLog | 13 +++++++++++++ libguile/ChangeLog | 13 +++++++++++++ 2 files changed, 26 insertions(+) diff --git a/doc/ref/ChangeLog b/doc/ref/ChangeLog index d8f23f6d2..564b84906 100644 --- a/doc/ref/ChangeLog +++ b/doc/ref/ChangeLog @@ -1,3 +1,16 @@ +2004-08-05 Kevin Ryde + + * api-scheduling.texi (Arbiters): Tweak wording for clarity, note any + thread can unlock not just the one which locked. + + * posix.texi (Conventions): Describe system-error args, use @defun for + system-error-errno instead of just words. + + * srfi-modules.texi (SRFI-13 Predicates): Tweak wording for clarity. + For string-every, note return is #t when no characters. For + string-any and string-every, note last pred call is not currently a + tail call, contrary to SRFI-13 spec. + 2004-08-03 Marius Vollmer * api-data.texi: Added scm_is_real, scm_is_rational, diff --git a/libguile/ChangeLog b/libguile/ChangeLog index fc1bca746..ac6797727 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,16 @@ +2004-08-05 Kevin Ryde + + * arbiters.c (scm_try_arbiter): Use scm_i_misc_mutex instead of + SCM_DEFER_INTS. + (scm_release_arbiter): Use scm_i_misc_mutex so return value can be + guaranteed if multiple threads compete to unlock. + Update docstrings per doc/ref/api-scheduling.texi. + + * posix.c (scm_setgroups): Enhance docstring, per doc/ref/posix.texi. + + * simpos.c (scm_system_star): Change scm_from_long to scm_from_int on + SIGINT and SIGQUIT, since those values are ints. + 2004-08-03 Marius Vollmer * num2integral.i.c, num2float.i.c: Removed.