~ubuntu-branches/ubuntu/intrepid/ecl/intrepid

« back to all changes in this revision

Viewing changes to src/gc/allchblk.c

  • Committer: Bazaar Package Importer
  • Author(s): Peter Van Eynde
  • Date: 2006-06-21 09:21:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060621092121-txz1f21lj0wh0f67
Tags: 0.9h-20060617-1
* New upstream version
* Updated standards version without real changes. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
529
529
                                /* free blocks in GC_add_to_fl.         */
530
530
#     endif
531
531
#   ifdef USE_MUNMAP
532
 
      hhdr -> hb_last_reclaimed = GC_gc_no;
 
532
      hhdr -> hb_last_reclaimed = (unsigned short)GC_gc_no;
533
533
#   endif
534
534
    hhdr -> hb_sz = h_size;
535
535
    GC_add_to_fl(h, hhdr);
793
793
    GC_remove_counts(hbp, (word)size);
794
794
    hhdr->hb_sz = size;
795
795
#   ifdef USE_MUNMAP
796
 
      hhdr -> hb_last_reclaimed = GC_gc_no;
 
796
      hhdr -> hb_last_reclaimed = (unsigned short)GC_gc_no;
797
797
#   endif
798
798
    
799
799
    /* Check for duplicate deallocation in the easy case */
821
821
          GC_remove_from_fl(prevhdr, FL_UNKNOWN);
822
822
          prevhdr -> hb_sz += hhdr -> hb_sz;
823
823
#         ifdef USE_MUNMAP
824
 
            prevhdr -> hb_last_reclaimed = GC_gc_no;
 
824
            prevhdr -> hb_last_reclaimed = (unsigned short)GC_gc_no;
825
825
#         endif
826
826
          GC_remove_header(hbp);
827
827
          hbp = prev;