1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-02 13:00:26 +02:00

*** empty log message ***

This commit is contained in:
Kevin Ryde 2004-07-31 01:28:49 +00:00
parent 5e9456e306
commit 58f2898942
2 changed files with 22 additions and 0 deletions

View file

@ -1,3 +1,20 @@
2004-07-31 Kevin Ryde <user42@zip.com.au>
* error.c (scm_strerror): Use scm_i_misc_mutex around strerror since
it's not thread safe.
(scm_syserror): Use scm_strerror rather than SCM_I_STRERROR, to take
advantage of this.
* fports.c (scm_open_file): Use scm_strerror likewise.
* filesys.c (scm_stat, scm_lstat): Ditto.
* filesys.c (scm_copy_file): Avoid fd leak when destination file
cannot be opened.
* symbols.c (scm_gensym): Use scm_i_misc_mutex around gensym_counter
update, for thread safety.
(gensym_counter): Move into scm_gensym which is its only user.
(scm_init_symbols): No need to explicitly initialize gensym_counter.
2004-07-29 Marius Vollmer <marius.vollmer@uni-dortmund.de> 2004-07-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
* numbers.h (scm_to_schar, scm_to_uchar, scm_to_char, * numbers.h (scm_to_schar, scm_to_uchar, scm_to_char,

View file

@ -1,3 +1,8 @@
2004-07-31 Kevin Ryde <user42@zip.com.au>
* tests/filesys.test: New file, exercising copy-file.
* Makefile.am (SCM_TESTS): Add it.
2004-07-29 Marius Vollmer <marius.vollmer@uni-dortmund.de> 2004-07-29 Marius Vollmer <marius.vollmer@uni-dortmund.de>
* standalone/test-conversion.c: Many more tests for the integer * standalone/test-conversion.c: Many more tests for the integer