diff options
author | jtb <jtb@pkgsrc.org> | 2003-08-04 15:45:59 +0000 |
---|---|---|
committer | jtb <jtb@pkgsrc.org> | 2003-08-04 15:45:59 +0000 |
commit | d2e390f93998cffe162ffdc2f66466e2740033f9 (patch) | |
tree | 86fcee609c1de6953ecaf4bb9c0a70d83b65a617 | |
parent | fdd69a052204164fb233da1f042d894ffd534462 (diff) | |
download | pkgsrc-d2e390f93998cffe162ffdc2f66466e2740033f9.tar.gz |
Note update of smalltalk to 2.1.4.
NEWS FROM 2.1.3 TO 2.1.4
o Fix bugs treating old objects that have already been considered by
the incremental GC (and survived it). Example:
ObjectMemory globalGarbageCollect.
HomedAssociation class instanceCount
gave 0 instead of 1. As a result, --enable-checking now can be
used.
o Fix bugs when doing #become: between old objects, exactly one of
which has not been considered by the incremental GC and was
incorrectly swept when the collector finally reached it.
o Fix bugs when garbage collection triggered finalization while a
primitive was being run. Finalization is now done in a separate
Process.
o Fix bugs treating very large objects.
o Fix infinite loop when the big object threshold was set between
the size of survivor spaces and the size of the eden.
o Printing Integers was unbelievably inefficient. Fixed together
with some more low-hanging fruit.
o SequenceableCollection>>#replaceFrom:to:with:startingAt: allows
again that stop=start-1 (like replaceFrom: 1 to: 0 with: ...)
-rw-r--r-- | doc/CHANGES | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/CHANGES b/doc/CHANGES index 0e96c425246..35221c02723 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,4 +1,4 @@ -$NetBSD: CHANGES,v 1.2987 2003/08/04 15:37:58 jtb Exp $ +$NetBSD: CHANGES,v 1.2988 2003/08/04 15:45:59 jtb Exp $ Changes to the packages collection and infrastructure in 2003: @@ -3196,3 +3196,4 @@ Changes to the packages collection and infrastructure in 2003: Updated mencoder to 0.90nb8 [jmmv 2003-08-04] Updated cue to 20030714nb1 [itojun 2003-08-04] Updated RScheme to 0.7.3.2 [jtb 2003-08-04] + Updated smalltalk to 2.1.4 [jtb 2003-08-04] |