comparison src/gc.h @ 3313:509d2981ffea

[xemacs-hg @ 2006-03-28 17:43:43 by crestani] EMACS_INT -> double for gc_state, gc_state related clean up
author crestani
date Tue, 28 Mar 2006 17:43:54 +0000
parents d674024a8674
children 80d74fed5399
comparison
equal deleted inserted replaced
3312:b145b32294ff 3313:509d2981ffea
32 /************************************************************************/ 32 /************************************************************************/
33 #ifdef ERROR_CHECK_GC 33 #ifdef ERROR_CHECK_GC
34 void gc_stat_print_stats (void); 34 void gc_stat_print_stats (void);
35 void gc_stat_finalized (void); 35 void gc_stat_finalized (void);
36 void gc_stat_freed (void); 36 void gc_stat_freed (void);
37 void gc_stat_explicitly_freed (void);
38 void gc_stat_explicitly_tried_freed (void);
39 # define GC_STAT_FINALIZED gc_stat_finalized () 37 # define GC_STAT_FINALIZED gc_stat_finalized ()
40 # define GC_STAT_FREED gc_stat_freed () 38 # define GC_STAT_FREED gc_stat_freed ()
41 # define GC_STAT_EXPLICITLY_FREED gc_stat_explicitly_freed ()
42 # define GC_STAT_EXPLICITLY_TRIED_FREED gc_stat_explicitly_tried_freed ()
43 #else /* not ERROR_CHECK_GC */ 39 #else /* not ERROR_CHECK_GC */
44 # define GC_STAT_FINALIZED 40 # define GC_STAT_FINALIZED
45 # define GC_STAT_FREED 41 # define GC_STAT_FREED
46 # define GC_STAT_EXPLICITLY_FREED
47 # define GC_STAT_EXPLICITLY_TRIED_FREED
48 #endif /* not ERROR_CHECK_GC */ 42 #endif /* not ERROR_CHECK_GC */
49 #endif /* not NEW_GC */ 43 #endif /* not NEW_GC */
50 44
51 45
52 /************************************************************************/ 46 /************************************************************************/