diff options
| author | Stefan Monnier | 2002-03-04 23:41:00 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-03-04 23:41:00 +0000 |
| commit | 31ade731e6dc0c0a4c124f93a1f0018e245a27a2 (patch) | |
| tree | 4ff60d1528615a7a75b53df5043ab0753c5eca51 /src/alloc.c | |
| parent | c01d0677abc9f0f2645e90ed1e23619c008e90a2 (diff) | |
| download | emacs-31ade731e6dc0c0a4c124f93a1f0018e245a27a2.tar.gz emacs-31ade731e6dc0c0a4c124f93a1f0018e245a27a2.zip | |
Change defvar_int def and vars to use EMACS_INT instead of just int.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/alloc.c b/src/alloc.c index 2592d71d22c..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. */ |