1 /* General utility routines for GDB, the GNU debugger.
2 Copyright 1986, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
22 #include <sys/ioctl.h>
23 #include <sys/param.h>
36 /* Prototypes for local functions */
38 #if !defined (NO_MALLOC_CHECK)
41 malloc_botch PARAMS ((void));
43 #endif /* NO_MALLOC_CHECK */
46 fatal_dump_core (); /* Can't prototype with <varargs.h> usage... */
49 prompt_for_continue PARAMS ((void));
52 set_width_command PARAMS ((char *, int, struct cmd_list_element *));
55 vfprintf_filtered PARAMS ((FILE *, char *, va_list));
57 /* If this definition isn't overridden by the header files, assume
58 that isatty and fileno exist on this system. */
60 #define ISATTY(FP) (isatty (fileno (FP)))
63 /* Chain of cleanup actions established with make_cleanup,
64 to be executed if an error happens. */
66 static struct cleanup *cleanup_chain;
68 /* Nonzero means a quit has been requested. */
72 /* Nonzero means quit immediately if Control-C is typed now,
73 rather than waiting until QUIT is executed. */
77 /* Nonzero means that encoded C++ names should be printed out in their
78 C++ form rather than raw. */
82 /* Nonzero means that encoded C++ names should be printed out in their
83 C++ form even in assembler language displays. If this is set, but
84 DEMANGLE is zero, names are printed raw, i.e. DEMANGLE controls. */
88 /* Nonzero means that strings with character values >0x7F should be printed
89 as octal escapes. Zero means just print the value (e.g. it's an
90 international character, and the terminal or window can cope.) */
92 int sevenbit_strings = 0;
94 /* String to be printed before error messages, if any. */
96 char *error_pre_print;
97 char *warning_pre_print = "\nwarning: ";
99 /* Add a new cleanup to the cleanup_chain,
100 and return the previous chain pointer
101 to be passed later to do_cleanups or discard_cleanups.
102 Args are FUNCTION to clean up with, and ARG to pass to it. */
105 make_cleanup (function, arg)
106 void (*function) PARAMS ((PTR));
109 register struct cleanup *new
110 = (struct cleanup *) xmalloc (sizeof (struct cleanup));
111 register struct cleanup *old_chain = cleanup_chain;
113 new->next = cleanup_chain;
114 new->function = function;
121 /* Discard cleanups and do the actions they describe
122 until we get back to the point OLD_CHAIN in the cleanup_chain. */
125 do_cleanups (old_chain)
126 register struct cleanup *old_chain;
128 register struct cleanup *ptr;
129 while ((ptr = cleanup_chain) != old_chain)
131 cleanup_chain = ptr->next; /* Do this first incase recursion */
132 (*ptr->function) (ptr->arg);
137 /* Discard cleanups, not doing the actions they describe,
138 until we get back to the point OLD_CHAIN in the cleanup_chain. */
141 discard_cleanups (old_chain)
142 register struct cleanup *old_chain;
144 register struct cleanup *ptr;
145 while ((ptr = cleanup_chain) != old_chain)
147 cleanup_chain = ptr->next;
152 /* Set the cleanup_chain to 0, and return the old cleanup chain. */
156 struct cleanup *old_chain = cleanup_chain;
162 /* Restore the cleanup chain from a previously saved chain. */
164 restore_cleanups (chain)
165 struct cleanup *chain;
167 cleanup_chain = chain;
170 /* This function is useful for cleanups.
174 old_chain = make_cleanup (free_current_contents, &foo);
176 to arrange to free the object thus allocated. */
179 free_current_contents (location)
185 /* Provide a known function that does nothing, to use as a base for
186 for a possibly long chain of cleanups. This is useful where we
187 use the cleanup chain for handling normal cleanups as well as dealing
188 with cleanups that need to be done as a result of a call to error().
189 In such cases, we may not be certain where the first cleanup is, unless
190 we have a do-nothing one to always use as the base. */
200 /* Provide a hook for modules wishing to print their own warning messages
201 to set up the terminal state in a compatible way, without them having
202 to import all the target_<...> macros. */
207 target_terminal_ours ();
208 wrap_here(""); /* Force out any buffered output */
212 /* Print a warning message.
213 The first argument STRING is the warning message, used as a fprintf string,
214 and the remaining args are passed as arguments to it.
215 The primary difference between warnings and errors is that a warning
216 does not force the return to command level. */
227 target_terminal_ours ();
228 wrap_here(""); /* Force out any buffered output */
230 if (warning_pre_print)
231 fprintf (stderr, warning_pre_print);
232 string = va_arg (args, char *);
233 vfprintf (stderr, string, args);
234 fprintf (stderr, "\n");
238 /* Print an error message and return to command level.
239 The first argument STRING is the error message, used as a fprintf string,
240 and the remaining args are passed as arguments to it. */
251 target_terminal_ours ();
252 wrap_here(""); /* Force out any buffered output */
255 fprintf_filtered (stderr, error_pre_print);
256 string = va_arg (args, char *);
257 vfprintf_filtered (stderr, string, args);
258 fprintf_filtered (stderr, "\n");
260 return_to_top_level ();
263 /* Print an error message and exit reporting failure.
264 This is for a error that we cannot continue from.
265 The arguments are printed a la printf.
267 This function cannot be declared volatile (NORETURN) in an
268 ANSI environment because exit() is not declared volatile. */
279 string = va_arg (args, char *);
280 fprintf (stderr, "\ngdb: ");
281 vfprintf (stderr, string, args);
282 fprintf (stderr, "\n");
287 /* Print an error message and exit, dumping core.
288 The arguments are printed a la printf (). */
292 fatal_dump_core (va_alist)
299 string = va_arg (args, char *);
300 /* "internal error" is always correct, since GDB should never dump
301 core, no matter what the input. */
302 fprintf (stderr, "\ngdb internal error: ");
303 vfprintf (stderr, string, args);
304 fprintf (stderr, "\n");
307 signal (SIGQUIT, SIG_DFL);
308 kill (getpid (), SIGQUIT);
309 /* We should never get here, but just in case... */
313 /* The strerror() function can return NULL for errno values that are
314 out of range. Provide a "safe" version that always returns a
318 safe_strerror (errnum)
324 if ((msg = strerror (errnum)) == NULL)
326 sprintf (buf, "(undocumented errno %d)", errnum);
332 /* The strsignal() function can return NULL for signal values that are
333 out of range. Provide a "safe" version that always returns a
337 safe_strsignal (signo)
343 if ((msg = strsignal (signo)) == NULL)
345 sprintf (buf, "(undocumented signal %d)", signo);
352 /* Print the system error message for errno, and also mention STRING
353 as the file name for which the error was encountered.
354 Then return to command level. */
357 perror_with_name (string)
363 err = safe_strerror (errno);
364 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
365 strcpy (combined, string);
366 strcat (combined, ": ");
367 strcat (combined, err);
369 /* I understand setting these is a matter of taste. Still, some people
370 may clear errno but not know about bfd_error. Doing this here is not
372 bfd_error = no_error;
375 error ("%s.", combined);
378 /* Print the system error message for ERRCODE, and also mention STRING
379 as the file name for which the error was encountered. */
382 print_sys_errmsg (string, errcode)
389 err = safe_strerror (errcode);
390 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
391 strcpy (combined, string);
392 strcat (combined, ": ");
393 strcat (combined, err);
395 fprintf (stderr, "%s.\n", combined);
398 /* Control C eventually causes this to be called, at a convenient time. */
403 target_terminal_ours ();
404 wrap_here ((char *)0); /* Force out any pending output */
406 ioctl (fileno (stdout), TCFLSH, 1);
407 #else /* not HAVE_TERMIO */
408 ioctl (fileno (stdout), TIOCFLUSH, 0);
409 #endif /* not HAVE_TERMIO */
413 error ("Quit (expect signal %d when inferior is resumed)", SIGINT);
414 #endif /* TIOCGPGRP */
417 /* Control C comes here */
426 /* Restore the signal handler. */
427 signal (signo, request_quit);
435 /* Memory management stuff (malloc friends). */
437 #if defined (NO_MMALLOC)
444 return (malloc (size));
448 mrealloc (md, ptr, size)
453 if (ptr == 0) /* Guard against old realloc's */
454 return malloc (size);
456 return realloc (ptr, size);
467 #endif /* NO_MMALLOC */
469 #if defined (NO_MMALLOC) || defined (NO_MMALLOC_CHECK)
477 #else /* have mmalloc and want corruption checking */
482 fatal_dump_core ("Memory corruption");
485 /* Attempt to install hooks in mmalloc/mrealloc/mfree for the heap specified
486 by MD, to detect memory corruption. Note that MD may be NULL to specify
487 the default heap that grows via sbrk.
489 Note that for freshly created regions, we must call mmcheck prior to any
490 mallocs in the region. Otherwise, any region which was allocated prior to
491 installing the checking hooks, which is later reallocated or freed, will
492 fail the checks! The mmcheck function only allows initial hooks to be
493 installed before the first mmalloc. However, anytime after we have called
494 mmcheck the first time to install the checking hooks, we can call it again
495 to update the function pointer to the memory corruption handler.
497 Returns zero on failure, non-zero on success. */
503 if (!mmcheck (md, malloc_botch))
505 warning ("internal error: failed to install memory consistency checks");
511 #endif /* Have mmalloc and want corruption checking */
513 /* Called when a memory allocation fails, with the number of bytes of
514 memory requested in SIZE. */
522 fatal ("virtual memory exhausted: can't allocate %ld bytes.", size);
526 fatal ("virtual memory exhausted.");
530 /* Like mmalloc but get error if no storage available, and protect against
531 the caller wanting to allocate zero bytes. Whether to return NULL for
532 a zero byte request, or translate the request into a request for one
533 byte of zero'd storage, is a religious issue. */
546 else if ((val = mmalloc (md, size)) == NULL)
553 /* Like mrealloc but get error if no storage available. */
556 xmrealloc (md, ptr, size)
565 val = mrealloc (md, ptr, size);
569 val = mmalloc (md, size);
578 /* Like malloc but get error if no storage available, and protect against
579 the caller wanting to allocate zero bytes. */
585 return (xmmalloc ((void *) NULL, size));
588 /* Like mrealloc but get error if no storage available. */
595 return (xmrealloc ((void *) NULL, ptr, size));
599 /* My replacement for the read system call.
600 Used like `read' but keeps going if `read' returns too soon. */
603 myread (desc, addr, len)
613 val = read (desc, addr, len);
624 /* Make a copy of the string at PTR with SIZE characters
625 (and add a null character at the end in the copy).
626 Uses malloc to get the space. Returns the address of the copy. */
629 savestring (ptr, size)
633 register char *p = (char *) xmalloc (size + 1);
634 bcopy (ptr, p, size);
640 msavestring (md, ptr, size)
645 register char *p = (char *) xmmalloc (md, size + 1);
646 bcopy (ptr, p, size);
651 /* The "const" is so it compiles under DGUX (which prototypes strsave
652 in <string.h>. FIXME: This should be named "xstrsave", shouldn't it?
653 Doesn't real strsave return NULL if out of memory? */
658 return savestring (ptr, strlen (ptr));
666 return (msavestring (md, ptr, strlen (ptr)));
670 print_spaces (n, file)
678 /* Ask user a y-or-n question and return 1 iff answer is yes.
679 Takes three args which are given to printf to print the question.
680 The first, a control string, should end in "? ".
681 It should not say how to answer, because we do that. */
693 /* Automatically answer "yes" if input is not from a terminal. */
694 if (!input_from_terminal_p ())
700 ctlstr = va_arg (args, char *);
701 vfprintf_filtered (stdout, ctlstr, args);
703 printf_filtered ("(y or n) ");
705 answer = fgetc (stdin);
706 clearerr (stdin); /* in case of C-d */
707 if (answer == EOF) /* C-d */
709 if (answer != '\n') /* Eat rest of input line, to EOF or newline */
712 ans2 = fgetc (stdin);
715 while (ans2 != EOF && ans2 != '\n');
722 printf_filtered ("Please answer y or n.\n");
727 /* Parse a C escape sequence. STRING_PTR points to a variable
728 containing a pointer to the string to parse. That pointer
729 should point to the character after the \. That pointer
730 is updated past the characters we use. The value of the
731 escape sequence is returned.
733 A negative value means the sequence \ newline was seen,
734 which is supposed to be equivalent to nothing at all.
736 If \ is followed by a null character, we return a negative
737 value and leave the string pointer pointing at the null character.
739 If \ is followed by 000, we return 0 and leave the string pointer
740 after the zeros. A value of 0 does not mean end of string. */
743 parse_escape (string_ptr)
746 register int c = *(*string_ptr)++;
750 return 007; /* Bell (alert) char */
753 case 'e': /* Escape character */
771 c = *(*string_ptr)++;
773 c = parse_escape (string_ptr);
776 return (c & 0200) | (c & 037);
787 register int i = c - '0';
788 register int count = 0;
791 if ((c = *(*string_ptr)++) >= '0' && c <= '7')
809 /* Print the character C on STREAM as part of the contents
810 of a literal string whose delimiter is QUOTER. */
813 printchar (c, stream, quoter)
819 c &= 0xFF; /* Avoid sign bit follies */
821 if ( c < 0x20 || /* Low control chars */
822 (c >= 0x7F && c < 0xA0) || /* DEL, High controls */
823 (sevenbit_strings && c >= 0x80)) { /* high order bit set */
827 fputs_filtered ("\\n", stream);
830 fputs_filtered ("\\b", stream);
833 fputs_filtered ("\\t", stream);
836 fputs_filtered ("\\f", stream);
839 fputs_filtered ("\\r", stream);
842 fputs_filtered ("\\e", stream);
845 fputs_filtered ("\\a", stream);
848 fprintf_filtered (stream, "\\%.3o", (unsigned int) c);
852 if (c == '\\' || c == quoter)
853 fputs_filtered ("\\", stream);
854 fprintf_filtered (stream, "%c", c);
858 /* Number of lines per page or UINT_MAX if paging is disabled. */
859 static unsigned int lines_per_page;
860 /* Number of chars per line or UNIT_MAX is line folding is disabled. */
861 static unsigned int chars_per_line;
862 /* Current count of lines printed on this page, chars on this line. */
863 static unsigned int lines_printed, chars_printed;
865 /* Buffer and start column of buffered text, for doing smarter word-
866 wrapping. When someone calls wrap_here(), we start buffering output
867 that comes through fputs_filtered(). If we see a newline, we just
868 spit it out and forget about the wrap_here(). If we see another
869 wrap_here(), we spit it out and remember the newer one. If we see
870 the end of the line, we spit out a newline, the indent, and then
873 wrap_column is the column number on the screen where wrap_buffer begins.
874 When wrap_column is zero, wrapping is not in effect.
875 wrap_buffer is malloc'd with chars_per_line+2 bytes.
876 When wrap_buffer[0] is null, the buffer is empty.
877 wrap_pointer points into it at the next character to fill.
878 wrap_indent is the string that should be used as indentation if the
881 static char *wrap_buffer, *wrap_pointer, *wrap_indent;
882 static int wrap_column;
886 set_width_command (args, from_tty, c)
889 struct cmd_list_element *c;
893 wrap_buffer = (char *) xmalloc (chars_per_line + 2);
894 wrap_buffer[0] = '\0';
897 wrap_buffer = (char *) xrealloc (wrap_buffer, chars_per_line + 2);
898 wrap_pointer = wrap_buffer; /* Start it at the beginning */
902 prompt_for_continue ()
907 ignore = gdb_readline ("---Type <return> to continue---");
910 chars_printed = lines_printed = 0;
912 dont_repeat (); /* Forget prev cmd -- CR won't repeat it. */
915 /* Reinitialize filter; ie. tell it to reset to original values. */
918 reinitialize_more_filter ()
924 /* Indicate that if the next sequence of characters overflows the line,
925 a newline should be inserted here rather than when it hits the end.
926 If INDENT is nonzero, it is a string to be printed to indent the
927 wrapped part on the next line. INDENT must remain accessible until
928 the next call to wrap_here() or until a newline is printed through
931 If the line is already overfull, we immediately print a newline and
932 the indentation, and disable further wrapping.
934 If we don't know the width of lines, but we know the page height,
935 we must not wrap words, but should still keep track of newlines
936 that were explicitly printed.
938 INDENT should not contain tabs, as that
939 will mess up the char count on the next line. FIXME. */
947 *wrap_pointer = '\0';
948 fputs (wrap_buffer, stdout);
950 wrap_pointer = wrap_buffer;
951 wrap_buffer[0] = '\0';
952 if (chars_per_line == UINT_MAX) /* No line overflow checking */
956 else if (chars_printed >= chars_per_line)
958 puts_filtered ("\n");
959 puts_filtered (indent);
964 wrap_column = chars_printed;
965 wrap_indent = indent;
969 /* Like fputs but pause after every screenful, and can wrap at points
970 other than the final character of a line.
971 Unlike fputs, fputs_filtered does not return a value.
972 It is OK for LINEBUFFER to be NULL, in which case just don't print
975 Note that a longjmp to top level may occur in this routine
976 (since prompt_for_continue may do so) so this routine should not be
977 called when cleanups are not in place. */
980 fputs_filtered (linebuffer, stream)
981 const char *linebuffer;
989 /* Don't do any filtering if it is disabled. */
991 || (lines_per_page == UINT_MAX && chars_per_line == UINT_MAX))
993 fputs (linebuffer, stream);
997 /* Go through and output each character. Show line extension
998 when this is necessary; prompt user for new page when this is
1001 lineptr = linebuffer;
1004 /* Possible new page. */
1005 if (lines_printed >= lines_per_page - 1)
1006 prompt_for_continue ();
1008 while (*lineptr && *lineptr != '\n')
1010 /* Print a single line. */
1011 if (*lineptr == '\t')
1014 *wrap_pointer++ = '\t';
1016 putc ('\t', stream);
1017 /* Shifting right by 3 produces the number of tab stops
1018 we have already passed, and then adding one and
1019 shifting left 3 advances to the next tab stop. */
1020 chars_printed = ((chars_printed >> 3) + 1) << 3;
1026 *wrap_pointer++ = *lineptr;
1028 putc (*lineptr, stream);
1033 if (chars_printed >= chars_per_line)
1035 unsigned int save_chars = chars_printed;
1039 /* If we aren't actually wrapping, don't output newline --
1040 if chars_per_line is right, we probably just overflowed
1041 anyway; if it's wrong, let us keep going. */
1043 putc ('\n', stream);
1045 /* Possible new page. */
1046 if (lines_printed >= lines_per_page - 1)
1047 prompt_for_continue ();
1049 /* Now output indentation and wrapped string */
1053 fputs (wrap_indent, stream);
1054 *wrap_pointer = '\0'; /* Null-terminate saved stuff */
1055 fputs (wrap_buffer, stream); /* and eject it */
1056 /* FIXME, this strlen is what prevents wrap_indent from
1057 containing tabs. However, if we recurse to print it
1058 and count its chars, we risk trouble if wrap_indent is
1059 longer than (the user settable) chars_per_line.
1060 Note also that this can set chars_printed > chars_per_line
1061 if we are printing a long string. */
1062 chars_printed = strlen (wrap_indent)
1063 + (save_chars - wrap_column);
1064 wrap_pointer = wrap_buffer; /* Reset buffer */
1065 wrap_buffer[0] = '\0';
1066 wrap_column = 0; /* And disable fancy wrap */
1071 if (*lineptr == '\n')
1074 wrap_here ((char *)0); /* Spit out chars, cancel further wraps */
1076 putc ('\n', stream);
1083 /* fputs_demangled is a variant of fputs_filtered that
1084 demangles g++ names.*/
1087 fputs_demangled (linebuffer, stream, arg_mode)
1092 #define SYMBOL_MAX 1024
1094 #define SYMBOL_CHAR(c) (isascii(c) \
1095 && (isalnum(c) || (c) == '_' || (c) == CPLUS_MARKER))
1097 char buf[SYMBOL_MAX+1];
1098 # define SLOP 5 /* How much room to leave in buf */
1101 if (linebuffer == NULL)
1104 /* If user wants to see raw output, no problem. */
1106 fputs_filtered (linebuffer, stream);
1112 while ( *p != (char) 0 ) {
1115 /* collect non-interesting characters into buf */
1116 while ( *p != (char) 0 && !SYMBOL_CHAR(*p) && i < (int)sizeof(buf)-SLOP ) {
1121 /* output the non-interesting characters without demangling */
1123 fputs_filtered(buf, stream);
1124 i = 0; /* reset buf */
1127 /* and now the interesting characters */
1128 while (i < SYMBOL_MAX
1131 && i < (int)sizeof(buf) - SLOP) {
1139 if ( (result = cplus_demangle(buf, arg_mode)) != NULL ) {
1140 fputs_filtered(result, stream);
1144 fputs_filtered(buf, stream);
1150 /* Print a variable number of ARGS using format FORMAT. If this
1151 information is going to put the amount written (since the last call
1152 to INITIALIZE_MORE_FILTER or the last page break) over the page size,
1153 print out a pause message and do a gdb_readline to get the users
1154 permision to continue.
1156 Unlike fprintf, this function does not return a value.
1158 We implement three variants, vfprintf (takes a vararg list and stream),
1159 fprintf (takes a stream to write on), and printf (the usual).
1161 Note that this routine has a restriction that the length of the
1162 final output line must be less than 255 characters *or* it must be
1163 less than twice the size of the format string. This is a very
1164 arbitrary restriction, but it is an internal restriction, so I'll
1165 put it in. This means that the %s format specifier is almost
1166 useless; unless the caller can GUARANTEE that the string is short
1167 enough, fputs_filtered should be used instead.
1169 Note also that a longjmp to top level may occur in this routine
1170 (since prompt_for_continue may do so) so this routine should not be
1171 called when cleanups are not in place. */
1174 vfprintf_filtered (stream, format, args)
1179 static char *linebuffer = (char *) 0;
1180 static int line_size;
1183 format_length = strlen (format);
1185 /* Allocated linebuffer for the first time. */
1188 linebuffer = (char *) xmalloc (255);
1192 /* Reallocate buffer to a larger size if this is necessary. */
1193 if (format_length * 2 > line_size)
1195 line_size = format_length * 2;
1197 /* You don't have to copy. */
1199 linebuffer = (char *) xmalloc (line_size);
1203 /* This won't blow up if the restrictions described above are
1205 (void) vsprintf (linebuffer, format, args);
1207 fputs_filtered (linebuffer, stream);
1212 fprintf_filtered (va_alist)
1220 stream = va_arg (args, FILE *);
1221 format = va_arg (args, char *);
1223 /* This won't blow up if the restrictions described above are
1225 vfprintf_filtered (stream, format, args);
1231 printf_filtered (va_alist)
1238 format = va_arg (args, char *);
1240 vfprintf_filtered (stdout, format, args);
1247 puts_filtered (string)
1250 fputs_filtered (string, stdout);
1253 /* Return a pointer to N spaces and a null. The pointer is good
1254 until the next call to here. */
1260 static char *spaces;
1261 static int max_spaces;
1267 spaces = (char *) xmalloc (n+1);
1268 for (t = spaces+n; t != spaces;)
1274 return spaces + max_spaces - n;
1277 /* Print N spaces. */
1279 print_spaces_filtered (n, stream)
1283 fputs_filtered (n_spaces (n), stream);
1286 /* C++ demangler stuff. */
1288 /* Print NAME on STREAM, demangling if necessary. */
1290 fprint_symbol (stream, name)
1296 || NULL == (demangled = cplus_demangle (name, DMGL_PARAMS | DMGL_ANSI)))
1297 fputs_filtered (name, stream);
1300 fputs_filtered (demangled, stream);
1306 _initialize_utils ()
1308 struct cmd_list_element *c;
1310 c = add_set_cmd ("width", class_support, var_uinteger,
1311 (char *)&chars_per_line,
1312 "Set number of characters gdb thinks are in a line.",
1314 add_show_from_set (c, &showlist);
1315 c->function.sfunc = set_width_command;
1318 (add_set_cmd ("height", class_support,
1319 var_uinteger, (char *)&lines_per_page,
1320 "Set number of lines gdb thinks are in a page.", &setlist),
1323 /* These defaults will be used if we are unable to get the correct
1324 values from termcap. */
1325 lines_per_page = 24;
1326 chars_per_line = 80;
1327 /* Initialize the screen height and width from termcap. */
1329 char *termtype = getenv ("TERM");
1331 /* Positive means success, nonpositive means failure. */
1334 /* 2048 is large enough for all known terminals, according to the
1335 GNU termcap manual. */
1336 char term_buffer[2048];
1340 status = tgetent (term_buffer, termtype);
1345 val = tgetnum ("li");
1347 lines_per_page = val;
1349 /* The number of lines per page is not mentioned
1350 in the terminal description. This probably means
1351 that paging is not useful (e.g. emacs shell window),
1352 so disable paging. */
1353 lines_per_page = UINT_MAX;
1355 val = tgetnum ("co");
1357 chars_per_line = val;
1362 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1364 /* If there is a better way to determine the window size, use it. */
1365 SIGWINCH_HANDLER ();
1368 /* If the output is not a terminal, don't paginate it. */
1369 if (!ISATTY (stdout))
1370 lines_per_page = UINT_MAX;
1372 set_width_command ((char *)NULL, 0, c);
1375 (add_set_cmd ("demangle", class_support, var_boolean,
1377 "Set demangling of encoded C++ names when displaying symbols.",
1382 (add_set_cmd ("sevenbit-strings", class_support, var_boolean,
1383 (char *)&sevenbit_strings,
1384 "Set printing of 8-bit characters in strings as \\nnn.",
1389 (add_set_cmd ("asm-demangle", class_support, var_boolean,
1390 (char *)&asm_demangle,
1391 "Set demangling of C++ names in disassembly listings.",
1396 /* Machine specific function to handle SIGWINCH signal. */
1398 #ifdef SIGWINCH_HANDLER_BODY
1399 SIGWINCH_HANDLER_BODY