comparison src/emacs.c @ 26532:9692309251b8

(gdb_valbits, gdb_gctypebits, gdb_emacs_intbits) (gdb_data_seg_bits): New variables.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 22 Nov 1999 13:19:41 +0000
parents b7438760079b
children f6e79aed5c2e
comparison
equal deleted inserted replaced
26531:a52135fe746e 26532:9692309251b8
65 #endif 65 #endif
66 66
67 extern void malloc_warning (); 67 extern void malloc_warning ();
68 extern void set_time_zone_rule (); 68 extern void set_time_zone_rule ();
69 extern char *index (); 69 extern char *index ();
70
71 /* Make these values available in GDB, which doesn't see macros. */
72
73 EMACS_INT gdb_valbits = VALBITS;
74 EMACS_INT gdb_gctypebits = GCTYPEBITS;
75 EMACS_INT gdb_emacs_intbits = sizeof (EMACS_INT) * BITS_PER_CHAR;
76 #ifdef DATA_SEG_BITS
77 EMACS_INT gdb_data_seg_bits = DATA_SEG_BITS;
78 #else
79 EMACS_INT gdb_data_seg_bits = 0;
80 #endif
70 81
71 /* Command line args from shell, as list of strings */ 82 /* Command line args from shell, as list of strings */
72 Lisp_Object Vcommand_line_args; 83 Lisp_Object Vcommand_line_args;
73 84
74 /* The name under which Emacs was invoked, with any leading directory 85 /* The name under which Emacs was invoked, with any leading directory