diff options
| author | Andreas Schwab | 2002-02-15 21:19:08 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2002-02-15 21:19:08 +0000 |
| commit | 382d38fa68ae89868b8eb48ab90d7a4584a9eb79 (patch) | |
| tree | 3297bd4ca16df954a8dd2598a5f59c48033bffc6 /src/alloc.c | |
| parent | f99041786479f96ae9cbd934e06088ecec62e297 (diff) | |
| download | emacs-382d38fa68ae89868b8eb48ab90d7a4584a9eb79.tar.gz emacs-382d38fa68ae89868b8eb48ab90d7a4584a9eb79.zip | |
(NSTATICS): Increase to 1280.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/alloc.c b/src/alloc.c index d83a6bbf2ee..5eafa21c2c7 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -122,18 +122,18 @@ int consing_since_gc; | |||
| 122 | 122 | ||
| 123 | /* Count the amount of consing of various sorts of space. */ | 123 | /* Count the amount of consing of various sorts of space. */ |
| 124 | 124 | ||
| 125 | int cons_cells_consed; | 125 | EMACS_INT cons_cells_consed; |
| 126 | int floats_consed; | 126 | EMACS_INT floats_consed; |
| 127 | int vector_cells_consed; | 127 | EMACS_INT vector_cells_consed; |
| 128 | int symbols_consed; | 128 | EMACS_INT symbols_consed; |
| 129 | int string_chars_consed; | 129 | EMACS_INT string_chars_consed; |
| 130 | int misc_objects_consed; | 130 | EMACS_INT misc_objects_consed; |
| 131 | int intervals_consed; | 131 | EMACS_INT intervals_consed; |
| 132 | int strings_consed; | 132 | EMACS_INT strings_consed; |
| 133 | 133 | ||
| 134 | /* Number of bytes of consing since GC before another GC should be done. */ | 134 | /* Number of bytes of consing since GC before another GC should be done. */ |
| 135 | 135 | ||
| 136 | int gc_cons_threshold; | 136 | EMACS_INT gc_cons_threshold; |
| 137 | 137 | ||
| 138 | /* Nonzero during GC. */ | 138 | /* Nonzero during GC. */ |
| 139 | 139 | ||
| @@ -155,8 +155,8 @@ int malloc_sbrk_unused; | |||
| 155 | 155 | ||
| 156 | /* Two limits controlling how much undo information to keep. */ | 156 | /* Two limits controlling how much undo information to keep. */ |
| 157 | 157 | ||
| 158 | int undo_limit; | 158 | EMACS_INT undo_limit; |
| 159 | int undo_strong_limit; | 159 | EMACS_INT undo_strong_limit; |
| 160 | 160 | ||
| 161 | /* Number of live and free conses etc. */ | 161 | /* Number of live and free conses etc. */ |
| 162 | 162 | ||
| @@ -215,7 +215,7 @@ static size_t pure_bytes_used_before_overflow; | |||
| 215 | 215 | ||
| 216 | /* Index in pure at which next pure object will be allocated.. */ | 216 | /* Index in pure at which next pure object will be allocated.. */ |
| 217 | 217 | ||
| 218 | int pure_bytes_used; | 218 | EMACS_INT pure_bytes_used; |
| 219 | 219 | ||
| 220 | /* If nonzero, this is a warning delivered by malloc and not yet | 220 | /* If nonzero, this is a warning delivered by malloc and not yet |
| 221 | displayed. */ | 221 | displayed. */ |
| @@ -396,7 +396,7 @@ struct gcpro *gcprolist; | |||
| 396 | 396 | ||
| 397 | /* Addresses of staticpro'd variables. */ | 397 | /* Addresses of staticpro'd variables. */ |
| 398 | 398 | ||
| 399 | #define NSTATICS 1026 | 399 | #define NSTATICS 1280 |
| 400 | Lisp_Object *staticvec[NSTATICS] = {0}; | 400 | Lisp_Object *staticvec[NSTATICS] = {0}; |
| 401 | 401 | ||
| 402 | /* Index of next unused slot in staticvec. */ | 402 | /* Index of next unused slot in staticvec. */ |