]> git.eshelyaron.com Git - emacs.git/commitdiff
(gdb_lisp_params): New enum type.
authorKarl Heuer <kwzh@gnu.org>
Mon, 22 May 1995 22:16:07 +0000 (22:16 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 22 May 1995 22:16:07 +0000 (22:16 +0000)
src/lisp.h

index 5422538a39df2aa4fd7f3600f07a4e7fe4ee17eb..3a7b60cbf97d3b7261d02c55067b9d944cae93d4 100644 (file)
@@ -96,6 +96,20 @@ enum Lisp_Misc_Type
 #define GCTYPEBITS 3
 #endif
 
+/* Make these values available in GDB, which sees enums but not macros.  */
+
+enum gdb_lisp_params
+{
+  gdb_valbits = VALBITS,
+  gdb_gctypebits = GCTYPEBITS,
+  gdb_emacs_intbits = sizeof (EMACS_INT) * INTBITS / sizeof (int),
+#ifdef DATA_SEG_BITS
+  gdb_data_seg_bits = DATA_SEG_BITS
+#else
+  gdb_data_seg_bits = 0
+#endif
+};
+
 #ifndef NO_UNION_TYPE
 
 #ifndef WORDS_BIG_ENDIAN