diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2009-11-09 13:44:39 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2009-11-09 13:44:39 -0800 |
commit | 357121301094005f6c56471fb18f9ff1b6bc8d13 (patch) | |
tree | e9b4d47ace9622de678f5c863e473bfa00fd721f /ChangeLog | |
parent | 10e4d4687df9a41a017fc438bc16407265dfe281 (diff) | |
download | txr-357121301094005f6c56471fb18f9ff1b6bc8d13.tar.gz txr-357121301094005f6c56471fb18f9ff1b6bc8d13.tar.bz2 txr-357121301094005f6c56471fb18f9ff1b6bc8d13.zip |
First cut at hash tables. One known problem is allocation during gc,
due to use of boxed numbers for vector access.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -1,5 +1,30 @@ 2009-11-06 Kaz Kylheku <kkylheku@gmail.com> + First cut at hash tables. One known problem is allocation during gc, + due to use of boxed numbers for vector access. + + * gc.c (gc): Disable gc when doing garbage collection, in case + something tries to allocate memory during gc, triggering a recursive + gc, which would be very bad. Also, call the new function, + hash_process_weak, in between the mark and sweep phases. + (gc_is_reachable): New function. + + * gc.h (gc_is_reachable): Declared. + + * lib.c (hash_t): New symbol global. + (acons_new_l): New function. + (obj_init): New symbol interned. + + * lib.h (hash_t, acons_new_l): Declared. + + * hash.c, hash.h: New files. + + * Makefile: New target, hash.o. + + * dep.mk: Regenerated. + +2009-11-06 Kaz Kylheku <kkylheku@gmail.com> + Throw exception on stream error during close, or I/O operations. This is needed for pipes that terminate abnormally or return failed termination. Pipe and stdio streams have an extra description field |