remove a forced GC (surely a bad idea) in the weak-hash implementation

This commit is contained in:
Matthew Flatt 2010-12-28 16:14:17 -07:00
parent 5eec85a5a2
commit 84a4f3f006

View File

@ -654,8 +654,9 @@ get_bucket (Scheme_Bucket_Table *table, const char *key, int add, Scheme_Bucket
if (table->weak && (table->size > 4096)) {
int actual = 0;
/* Forced GC: so that the new table is as small as possible. */
scheme_collect_garbage();
/* It might be nice to force a GC so that the new table is
as small as possible, but that's too expensive. */
/* scheme_collect_garbage(); */
/* Check actual count: */
for (i = 0; i < oldsize; i++) {