emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/alloc.c


From: Andreas Schwab
Subject: [Emacs-diffs] Changes to emacs/src/alloc.c
Date: Fri, 15 Feb 2002 16:19:08 -0500

Index: emacs/src/alloc.c
diff -c emacs/src/alloc.c:1.264 emacs/src/alloc.c:1.265
*** emacs/src/alloc.c:1.264     Fri Feb 15 04:36:05 2002
--- emacs/src/alloc.c   Fri Feb 15 16:19:08 2002
***************
*** 122,139 ****
  
  /* Count the amount of consing of various sorts of space.  */
  
! int cons_cells_consed;
! int floats_consed;
! int vector_cells_consed;
! int symbols_consed;
! int string_chars_consed;
! int misc_objects_consed;
! int intervals_consed;
! int strings_consed;
  
  /* Number of bytes of consing since GC before another GC should be done. */
  
! int gc_cons_threshold;
  
  /* Nonzero during GC.  */
  
--- 122,139 ----
  
  /* Count the amount of consing of various sorts of space.  */
  
! EMACS_INT cons_cells_consed;
! EMACS_INT floats_consed;
! EMACS_INT vector_cells_consed;
! EMACS_INT symbols_consed;
! EMACS_INT string_chars_consed;
! EMACS_INT misc_objects_consed;
! EMACS_INT intervals_consed;
! EMACS_INT strings_consed;
  
  /* Number of bytes of consing since GC before another GC should be done. */
  
! EMACS_INT gc_cons_threshold;
  
  /* Nonzero during GC.  */
  
***************
*** 155,162 ****
  
  /* Two limits controlling how much undo information to keep.  */
  
! int undo_limit;
! int undo_strong_limit;
  
  /* Number of live and free conses etc.  */
  
--- 155,162 ----
  
  /* Two limits controlling how much undo information to keep.  */
  
! EMACS_INT undo_limit;
! EMACS_INT undo_strong_limit;
  
  /* Number of live and free conses etc.  */
  
***************
*** 215,221 ****
  
  /* Index in pure at which next pure object will be allocated.. */
  
! int pure_bytes_used;
  
  /* If nonzero, this is a warning delivered by malloc and not yet
     displayed.  */
--- 215,221 ----
  
  /* Index in pure at which next pure object will be allocated.. */
  
! EMACS_INT pure_bytes_used;
  
  /* If nonzero, this is a warning delivered by malloc and not yet
     displayed.  */
***************
*** 396,402 ****
  
  /* Addresses of staticpro'd variables.  */
  
! #define NSTATICS 1026
  Lisp_Object *staticvec[NSTATICS] = {0};
  
  /* Index of next unused slot in staticvec.  */
--- 396,402 ----
  
  /* Addresses of staticpro'd variables.  */
  
! #define NSTATICS 1280
  Lisp_Object *staticvec[NSTATICS] = {0};
  
  /* Index of next unused slot in staticvec.  */



reply via email to

[Prev in Thread] Current Thread [Next in Thread]