]> git.eshelyaron.com Git - emacs.git/commitdiff
[BOEHM_GC]: Include gc.h.
authorDave Love <fx@gnu.org>
Wed, 11 Jun 2003 11:40:20 +0000 (11:40 +0000)
committerDave Love <fx@gnu.org>
Wed, 11 Jun 2003 11:40:20 +0000 (11:40 +0000)
(make_image, free_image, make_image_cache, free_image_cache)
(cache_image):

src/fns.c

index ff0f7cb481c99f44b282fa9d0cd33b80a16cdbb3..08f56adea725e5058b59a69dde11162c6947cdd5 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -4669,6 +4669,7 @@ hash_clear (h)
                           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
@@ -4791,7 +4792,11 @@ sweep_weak_hash_tables ()
       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)
@@ -4805,8 +4810,7 @@ sweep_weak_hash_tables ()
 
   Vweak_hash_tables = used;
 }
-
-
+#endif /* BOEHM_GC */
 \f
 /***********************************************************************
                        Hash Code Computation