(make_image, free_image, make_image_cache, free_image_cache)
(cache_image):
Weak Hash Tables
************************************************************************/
+#ifndef BOEHM_GC
/* Sweep weak hash table H. REMOVE_ENTRIES_P non-zero means remove
entries from the table that don't survive the current GC.
REMOVE_ENTRIES_P zero means mark entries that are in use. Value is
h = XHASH_TABLE (table);
next = h->next_weak;
+#ifdef BOEHM_GC
+ if (GC_is_marked (h))
+#else
if (h->size & ARRAY_MARK_FLAG)
+#endif
{
/* TABLE is marked as used. Sweep its contents. */
if (XFASTINT (h->count) > 0)
Vweak_hash_tables = used;
}
-
-
+#endif /* BOEHM_GC */
\f
/***********************************************************************
Hash Code Computation