aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 192b308bbc0..e33d3c31d31 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -68,6 +68,17 @@ extern void malloc_warning ();
68extern void set_time_zone_rule (); 68extern void set_time_zone_rule ();
69extern char *index (); 69extern char *index ();
70 70
71/* Make these values available in GDB, which doesn't see macros. */
72
73EMACS_INT gdb_valbits = VALBITS;
74EMACS_INT gdb_gctypebits = GCTYPEBITS;
75EMACS_INT gdb_emacs_intbits = sizeof (EMACS_INT) * BITS_PER_CHAR;
76#ifdef DATA_SEG_BITS
77EMACS_INT gdb_data_seg_bits = DATA_SEG_BITS;
78#else
79EMACS_INT gdb_data_seg_bits = 0;
80#endif
81
71/* Command line args from shell, as list of strings */ 82/* Command line args from shell, as list of strings */
72Lisp_Object Vcommand_line_args; 83Lisp_Object Vcommand_line_args;
73 84