/[emacs]/emacs/src/alloc.c
ViewVC logotype

Diff of /emacs/src/alloc.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.264 by kai, Fri Feb 15 09:36:05 2002 UTC revision 1.265 by schwab, Fri Feb 15 21:19:08 2002 UTC
# Line 122  int consing_since_gc; Line 122  int consing_since_gc;
122    
123  /* Count the amount of consing of various sorts of space.  */  /* Count the amount of consing of various sorts of space.  */
124    
125  int cons_cells_consed;  EMACS_INT cons_cells_consed;
126  int floats_consed;  EMACS_INT floats_consed;
127  int vector_cells_consed;  EMACS_INT vector_cells_consed;
128  int symbols_consed;  EMACS_INT symbols_consed;
129  int string_chars_consed;  EMACS_INT string_chars_consed;
130  int misc_objects_consed;  EMACS_INT misc_objects_consed;
131  int intervals_consed;  EMACS_INT intervals_consed;
132  int strings_consed;  EMACS_INT strings_consed;
133    
134  /* Number of bytes of consing since GC before another GC should be done. */  /* Number of bytes of consing since GC before another GC should be done. */
135    
136  int gc_cons_threshold;  EMACS_INT gc_cons_threshold;
137    
138  /* Nonzero during GC.  */  /* Nonzero during GC.  */
139    
# Line 155  int malloc_sbrk_unused; Line 155  int malloc_sbrk_unused;
155    
156  /* Two limits controlling how much undo information to keep.  */  /* Two limits controlling how much undo information to keep.  */
157    
158  int undo_limit;  EMACS_INT undo_limit;
159  int undo_strong_limit;  EMACS_INT undo_strong_limit;
160    
161  /* Number of live and free conses etc.  */  /* Number of live and free conses etc.  */
162    
# Line 215  static size_t pure_bytes_used_before_ove Line 215  static size_t pure_bytes_used_before_ove
215    
216  /* Index in pure at which next pure object will be allocated.. */  /* Index in pure at which next pure object will be allocated.. */
217    
218  int pure_bytes_used;  EMACS_INT pure_bytes_used;
219    
220  /* If nonzero, this is a warning delivered by malloc and not yet  /* If nonzero, this is a warning delivered by malloc and not yet
221     displayed.  */     displayed.  */
# Line 396  struct gcpro *gcprolist; Line 396  struct gcpro *gcprolist;
396    
397  /* Addresses of staticpro'd variables.  */  /* Addresses of staticpro'd variables.  */
398    
399  #define NSTATICS 1026  #define NSTATICS 1280
400  Lisp_Object *staticvec[NSTATICS] = {0};  Lisp_Object *staticvec[NSTATICS] = {0};
401    
402  /* Index of next unused slot in staticvec.  */  /* Index of next unused slot in staticvec.  */

Legend:
Removed from v.1.264  
changed lines
  Added in v.1.265

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26