aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorStefan Monnier2002-03-04 23:41:00 +0000
committerStefan Monnier2002-03-04 23:41:00 +0000
commit31ade731e6dc0c0a4c124f93a1f0018e245a27a2 (patch)
tree4ff60d1528615a7a75b53df5043ab0753c5eca51 /src/alloc.c
parentc01d0677abc9f0f2645e90ed1e23619c008e90a2 (diff)
downloademacs-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.c24
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
125int cons_cells_consed; 125EMACS_INT cons_cells_consed;
126int floats_consed; 126EMACS_INT floats_consed;
127int vector_cells_consed; 127EMACS_INT vector_cells_consed;
128int symbols_consed; 128EMACS_INT symbols_consed;
129int string_chars_consed; 129EMACS_INT string_chars_consed;
130int misc_objects_consed; 130EMACS_INT misc_objects_consed;
131int intervals_consed; 131EMACS_INT intervals_consed;
132int strings_consed; 132EMACS_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
136int gc_cons_threshold; 136EMACS_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
158int undo_limit; 158EMACS_INT undo_limit;
159int undo_strong_limit; 159EMACS_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
218int pure_bytes_used; 218EMACS_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. */