]> git.eshelyaron.com Git - emacs.git/commitdiff
(syms_of_alloc): Set up Lisp variables ...-consed,
authorRichard M. Stallman <rms@gnu.org>
Thu, 29 Aug 1996 00:44:05 +0000 (00:44 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 29 Aug 1996 00:44:05 +0000 (00:44 +0000)
such as Vcons-cells-consed.

src/alloc.c

index 71870839916b541fb405afee78fb129eb05b466d..662c334d47b08c62447c6ab6c19dfbb120194c0c 100644 (file)
@@ -2596,6 +2596,27 @@ prevent garbage collection during a part of the program.");
   DEFVAR_INT ("pure-bytes-used", &pureptr,
     "Number of bytes of sharable Lisp data allocated so far.");
 
+  DEFVAR_INT ("cons-cells-consed", &cons_cells_consed,
+    "Number of cons cells that have been consed so far.");
+
+  DEFVAR_INT ("floats-consed", &floats_consed,
+    "Number of floats that have been consed so far.");
+
+  DEFVAR_INT ("vector-cells-consed", &vector_cells_consed,
+    "Number of vector cells that have been consed so far.");
+
+  DEFVAR_INT ("symbols-consed", &symbols_consed,
+    "Number of symbols that have been consed so far.");
+
+  DEFVAR_INT ("string-chars-consed", &string_chars_consed,
+    "Number of string characters that have been consed so far.");
+
+  DEFVAR_INT ("misc-objects-consed", &misc_objects_consed,
+    "Number of miscellaneous objects that have been consed so far.");
+
+  DEFVAR_INT ("intervals-consed", &intervals_consed,
+    "Number of intervals that have been consed so far.");
+
 #if 0
   DEFVAR_INT ("data-bytes-used", &malloc_sbrk_used,
     "Number of bytes of unshared memory allocated in this session.");