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>
35 /* Prototypes for local functions */
37 #if !defined (NO_MALLOC_CHECK)
40 malloc_botch PARAMS ((void));
42 #endif /* NO_MALLOC_CHECK */
45 fatal_dump_core (); /* Can't prototype with <varargs.h> usage... */
48 prompt_for_continue PARAMS ((void));
51 set_width_command PARAMS ((char *, int, struct cmd_list_element *));
54 vfprintf_filtered PARAMS ((FILE *, char *, va_list));
56 /* If this definition isn't overridden by the header files, assume
57 that isatty and fileno exist on this system. */
59 #define ISATTY(FP) (isatty (fileno (FP)))
62 /* Chain of cleanup actions established with make_cleanup,
63 to be executed if an error happens. */
65 static struct cleanup *cleanup_chain;
67 /* Nonzero means a quit has been requested. */
71 /* Nonzero means quit immediately if Control-C is typed now,
72 rather than waiting until QUIT is executed. */
76 /* Nonzero means that encoded C++ names should be printed out in their
77 C++ form rather than raw. */
81 /* Nonzero means that encoded C++ names should be printed out in their
82 C++ form even in assembler language displays. If this is set, but
83 DEMANGLE is zero, names are printed raw, i.e. DEMANGLE controls. */
87 /* Nonzero means that strings with character values >0x7F should be printed
88 as octal escapes. Zero means just print the value (e.g. it's an
89 international character, and the terminal or window can cope.) */
91 int sevenbit_strings = 0;
93 /* String to be printed before error messages, if any. */
95 char *error_pre_print;
96 char *warning_pre_print = "\nwarning: ";
98 /* Add a new cleanup to the cleanup_chain,
99 and return the previous chain pointer
100 to be passed later to do_cleanups or discard_cleanups.
101 Args are FUNCTION to clean up with, and ARG to pass to it. */
104 make_cleanup (function, arg)
105 void (*function) PARAMS ((PTR));
108 register struct cleanup *new
109 = (struct cleanup *) xmalloc (sizeof (struct cleanup));
110 register struct cleanup *old_chain = cleanup_chain;
112 new->next = cleanup_chain;
113 new->function = function;
120 /* Discard cleanups and do the actions they describe
121 until we get back to the point OLD_CHAIN in the cleanup_chain. */
124 do_cleanups (old_chain)
125 register struct cleanup *old_chain;
127 register struct cleanup *ptr;
128 while ((ptr = cleanup_chain) != old_chain)
130 cleanup_chain = ptr->next; /* Do this first incase recursion */
131 (*ptr->function) (ptr->arg);
136 /* Discard cleanups, not doing the actions they describe,
137 until we get back to the point OLD_CHAIN in the cleanup_chain. */
140 discard_cleanups (old_chain)
141 register struct cleanup *old_chain;
143 register struct cleanup *ptr;
144 while ((ptr = cleanup_chain) != old_chain)
146 cleanup_chain = ptr->next;
151 /* Set the cleanup_chain to 0, and return the old cleanup chain. */
155 struct cleanup *old_chain = cleanup_chain;
161 /* Restore the cleanup chain from a previously saved chain. */
163 restore_cleanups (chain)
164 struct cleanup *chain;
166 cleanup_chain = chain;
169 /* This function is useful for cleanups.
173 old_chain = make_cleanup (free_current_contents, &foo);
175 to arrange to free the object thus allocated. */
178 free_current_contents (location)
184 /* Provide a known function that does nothing, to use as a base for
185 for a possibly long chain of cleanups. This is useful where we
186 use the cleanup chain for handling normal cleanups as well as dealing
187 with cleanups that need to be done as a result of a call to error().
188 In such cases, we may not be certain where the first cleanup is, unless
189 we have a do-nothing one to always use as the base. */
199 /* Provide a hook for modules wishing to print their own warning messages
200 to set up the terminal state in a compatible way, without them having
201 to import all the target_<...> macros. */
206 target_terminal_ours ();
207 wrap_here(""); /* Force out any buffered output */
211 /* Print a warning message.
212 The first argument STRING is the warning message, used as a fprintf string,
213 and the remaining args are passed as arguments to it.
214 The primary difference between warnings and errors is that a warning
215 does not force the return to command level. */
226 target_terminal_ours ();
227 wrap_here(""); /* Force out any buffered output */
229 if (warning_pre_print)
230 fprintf (stderr, warning_pre_print);
231 string = va_arg (args, char *);
232 vfprintf (stderr, string, args);
233 fprintf (stderr, "\n");
237 /* Print an error message and return to command level.
238 The first argument STRING is the error message, used as a fprintf string,
239 and the remaining args are passed as arguments to it. */
250 target_terminal_ours ();
251 wrap_here(""); /* Force out any buffered output */
254 fprintf (stderr, error_pre_print);
255 string = va_arg (args, char *);
256 vfprintf (stderr, string, args);
257 fprintf (stderr, "\n");
259 return_to_top_level ();
262 /* Print an error message and exit reporting failure.
263 This is for a error that we cannot continue from.
264 The arguments are printed a la printf.
266 This function cannot be declared volatile (NORETURN) in an
267 ANSI environment because exit() is not declared volatile. */
278 string = va_arg (args, char *);
279 fprintf (stderr, "\ngdb: ");
280 vfprintf (stderr, string, args);
281 fprintf (stderr, "\n");
286 /* Print an error message and exit, dumping core.
287 The arguments are printed a la printf (). */
291 fatal_dump_core (va_alist)
298 string = va_arg (args, char *);
299 /* "internal error" is always correct, since GDB should never dump
300 core, no matter what the input. */
301 fprintf (stderr, "\ngdb internal error: ");
302 vfprintf (stderr, string, args);
303 fprintf (stderr, "\n");
306 signal (SIGQUIT, SIG_DFL);
307 kill (getpid (), SIGQUIT);
308 /* We should never get here, but just in case... */
312 /* Print the system error message for errno, and also mention STRING
313 as the file name for which the error was encountered.
314 Then return to command level. */
317 perror_with_name (string)
321 extern char *sys_errlist[];
325 if (errno < sys_nerr)
326 err = sys_errlist[errno];
328 err = "unknown error";
330 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
331 strcpy (combined, string);
332 strcat (combined, ": ");
333 strcat (combined, err);
335 /* I understand setting these is a matter of taste. Still, some people
336 may clear errno but not know about bfd_error. Doing this here is not
338 bfd_error = no_error;
341 error ("%s.", combined);
344 /* Print the system error message for ERRCODE, and also mention STRING
345 as the file name for which the error was encountered. */
348 print_sys_errmsg (string, errcode)
353 extern char *sys_errlist[];
357 if (errcode < sys_nerr)
358 err = sys_errlist[errcode];
360 err = "unknown error";
362 combined = (char *) alloca (strlen (err) + strlen (string) + 3);
363 strcpy (combined, string);
364 strcat (combined, ": ");
365 strcat (combined, err);
367 printf ("%s.\n", combined);
370 /* Control C eventually causes this to be called, at a convenient time. */
375 target_terminal_ours ();
376 wrap_here ((char *)0); /* Force out any pending output */
378 ioctl (fileno (stdout), TCFLSH, 1);
379 #else /* not HAVE_TERMIO */
380 ioctl (fileno (stdout), TIOCFLUSH, 0);
381 #endif /* not HAVE_TERMIO */
385 error ("Quit (expect signal %d when inferior is resumed)", SIGINT);
386 #endif /* TIOCGPGRP */
389 /* Control C comes here */
398 /* Restore the signal handler. */
399 signal (signo, request_quit);
407 /* Memory management stuff (malloc friends). */
409 #if defined (NO_MMALLOC)
416 return (malloc (size));
420 mrealloc (md, ptr, size)
425 return (realloc (ptr, size));
436 #endif /* NO_MMALLOC */
438 #if defined (NO_MMALLOC) || defined (NO_MMALLOC_CHECK)
446 #else /* have mmalloc and want corruption checking */
451 fatal_dump_core ("Memory corruption");
454 /* Attempt to install hooks in mmalloc/mrealloc/mfree for the heap specified
455 by MD, to detect memory corruption. Note that MD may be NULL to specify
456 the default heap that grows via sbrk.
458 Note that for freshly created regions, we must call mmcheck prior to any
459 mallocs in the region. Otherwise, any region which was allocated prior to
460 installing the checking hooks, which is later reallocated or freed, will
461 fail the checks! The mmcheck function only allows initial hooks to be
462 installed before the first mmalloc. However, anytime after we have called
463 mmcheck the first time to install the checking hooks, we can call it again
464 to update the function pointer to the memory corruption handler.
466 Returns zero on failure, non-zero on success. */
472 if (!mmcheck (md, malloc_botch))
474 warning ("internal error: failed to install memory consistency checks");
480 #endif /* Have mmalloc and want corruption checking */
482 /* Called when a memory allocation fails, with the number of bytes of
483 memory requested in SIZE. */
491 fatal ("virtual memory exhausted: can't allocate %ld bytes.", size);
495 fatal ("virtual memory exhausted.");
499 /* Like mmalloc but get error if no storage available, and protect against
500 the caller wanting to allocate zero bytes. Whether to return NULL for
501 a zero byte request, or translate the request into a request for one
502 byte of zero'd storage, is a religious issue. */
515 else if ((val = mmalloc (md, size)) == NULL)
522 /* Like mrealloc but get error if no storage available. */
525 xmrealloc (md, ptr, size)
534 val = mrealloc (md, ptr, size);
538 val = mmalloc (md, size);
547 /* Like malloc but get error if no storage available, and protect against
548 the caller wanting to allocate zero bytes. */
554 return (xmmalloc ((void *) NULL, size));
557 /* Like mrealloc but get error if no storage available. */
564 return (xmrealloc ((void *) NULL, ptr, size));
568 /* My replacement for the read system call.
569 Used like `read' but keeps going if `read' returns too soon. */
572 myread (desc, addr, len)
582 val = read (desc, addr, len);
593 /* Make a copy of the string at PTR with SIZE characters
594 (and add a null character at the end in the copy).
595 Uses malloc to get the space. Returns the address of the copy. */
598 savestring (ptr, size)
602 register char *p = (char *) xmalloc (size + 1);
603 bcopy (ptr, p, size);
609 msavestring (md, ptr, size)
614 register char *p = (char *) xmmalloc (md, size + 1);
615 bcopy (ptr, p, size);
620 /* The "const" is so it compiles under DGUX (which prototypes strsave
621 in <string.h>. FIXME: This should be named "xstrsave", shouldn't it?
622 Doesn't real strsave return NULL if out of memory? */
627 return savestring (ptr, strlen (ptr));
635 return (msavestring (md, ptr, strlen (ptr)));
639 print_spaces (n, file)
647 /* Ask user a y-or-n question and return 1 iff answer is yes.
648 Takes three args which are given to printf to print the question.
649 The first, a control string, should end in "? ".
650 It should not say how to answer, because we do that. */
662 /* Automatically answer "yes" if input is not from a terminal. */
663 if (!input_from_terminal_p ())
669 ctlstr = va_arg (args, char *);
670 vfprintf (stdout, ctlstr, args);
672 printf ("(y or n) ");
674 answer = fgetc (stdin);
675 clearerr (stdin); /* in case of C-d */
676 if (answer == EOF) /* C-d */
678 if (answer != '\n') /* Eat rest of input line, to EOF or newline */
681 ans2 = fgetc (stdin);
684 while (ans2 != EOF && ans2 != '\n');
691 printf ("Please answer y or n.\n");
696 /* Parse a C escape sequence. STRING_PTR points to a variable
697 containing a pointer to the string to parse. That pointer
698 should point to the character after the \. That pointer
699 is updated past the characters we use. The value of the
700 escape sequence is returned.
702 A negative value means the sequence \ newline was seen,
703 which is supposed to be equivalent to nothing at all.
705 If \ is followed by a null character, we return a negative
706 value and leave the string pointer pointing at the null character.
708 If \ is followed by 000, we return 0 and leave the string pointer
709 after the zeros. A value of 0 does not mean end of string. */
712 parse_escape (string_ptr)
715 register int c = *(*string_ptr)++;
719 return 007; /* Bell (alert) char */
722 case 'e': /* Escape character */
740 c = *(*string_ptr)++;
742 c = parse_escape (string_ptr);
745 return (c & 0200) | (c & 037);
756 register int i = c - '0';
757 register int count = 0;
760 if ((c = *(*string_ptr)++) >= '0' && c <= '7')
778 /* Print the character C on STREAM as part of the contents
779 of a literal string whose delimiter is QUOTER. */
782 printchar (c, stream, quoter)
788 if (c < 040 || (sevenbit_strings && c >= 0177)) {
792 fputs_filtered ("\\n", stream);
795 fputs_filtered ("\\b", stream);
798 fputs_filtered ("\\t", stream);
801 fputs_filtered ("\\f", stream);
804 fputs_filtered ("\\r", stream);
807 fputs_filtered ("\\e", stream);
810 fputs_filtered ("\\a", stream);
813 fprintf_filtered (stream, "\\%.3o", (unsigned int) c);
817 if (c == '\\' || c == quoter)
818 fputs_filtered ("\\", stream);
819 fprintf_filtered (stream, "%c", c);
823 /* Number of lines per page or UINT_MAX if paging is disabled. */
824 static unsigned int lines_per_page;
825 /* Number of chars per line or UNIT_MAX is line folding is disabled. */
826 static unsigned int chars_per_line;
827 /* Current count of lines printed on this page, chars on this line. */
828 static unsigned int lines_printed, chars_printed;
830 /* Buffer and start column of buffered text, for doing smarter word-
831 wrapping. When someone calls wrap_here(), we start buffering output
832 that comes through fputs_filtered(). If we see a newline, we just
833 spit it out and forget about the wrap_here(). If we see another
834 wrap_here(), we spit it out and remember the newer one. If we see
835 the end of the line, we spit out a newline, the indent, and then
838 wrap_column is the column number on the screen where wrap_buffer begins.
839 When wrap_column is zero, wrapping is not in effect.
840 wrap_buffer is malloc'd with chars_per_line+2 bytes.
841 When wrap_buffer[0] is null, the buffer is empty.
842 wrap_pointer points into it at the next character to fill.
843 wrap_indent is the string that should be used as indentation if the
846 static char *wrap_buffer, *wrap_pointer, *wrap_indent;
847 static int wrap_column;
851 set_width_command (args, from_tty, c)
854 struct cmd_list_element *c;
858 wrap_buffer = (char *) xmalloc (chars_per_line + 2);
859 wrap_buffer[0] = '\0';
862 wrap_buffer = (char *) xrealloc (wrap_buffer, chars_per_line + 2);
863 wrap_pointer = wrap_buffer; /* Start it at the beginning */
867 prompt_for_continue ()
872 ignore = gdb_readline ("---Type <return> to continue---");
875 chars_printed = lines_printed = 0;
877 dont_repeat (); /* Forget prev cmd -- CR won't repeat it. */
880 /* Reinitialize filter; ie. tell it to reset to original values. */
883 reinitialize_more_filter ()
889 /* Indicate that if the next sequence of characters overflows the line,
890 a newline should be inserted here rather than when it hits the end.
891 If INDENT is nonzero, it is a string to be printed to indent the
892 wrapped part on the next line. INDENT must remain accessible until
893 the next call to wrap_here() or until a newline is printed through
896 If the line is already overfull, we immediately print a newline and
897 the indentation, and disable further wrapping.
899 If we don't know the width of lines, but we know the page height,
900 we must not wrap words, but should still keep track of newlines
901 that were explicitly printed.
903 INDENT should not contain tabs, as that
904 will mess up the char count on the next line. FIXME. */
912 *wrap_pointer = '\0';
913 fputs (wrap_buffer, stdout);
915 wrap_pointer = wrap_buffer;
916 wrap_buffer[0] = '\0';
917 if (chars_per_line == UINT_MAX) /* No line overflow checking */
921 else if (chars_printed >= chars_per_line)
923 puts_filtered ("\n");
924 puts_filtered (indent);
929 wrap_column = chars_printed;
930 wrap_indent = indent;
934 /* Like fputs but pause after every screenful, and can wrap at points
935 other than the final character of a line.
936 Unlike fputs, fputs_filtered does not return a value.
937 It is OK for LINEBUFFER to be NULL, in which case just don't print
940 Note that a longjmp to top level may occur in this routine
941 (since prompt_for_continue may do so) so this routine should not be
942 called when cleanups are not in place. */
945 fputs_filtered (linebuffer, stream)
946 const char *linebuffer;
954 /* Don't do any filtering if it is disabled. */
956 || (lines_per_page == UINT_MAX && chars_per_line == UINT_MAX))
958 fputs (linebuffer, stream);
962 /* Go through and output each character. Show line extension
963 when this is necessary; prompt user for new page when this is
966 lineptr = linebuffer;
969 /* Possible new page. */
970 if (lines_printed >= lines_per_page - 1)
971 prompt_for_continue ();
973 while (*lineptr && *lineptr != '\n')
975 /* Print a single line. */
976 if (*lineptr == '\t')
979 *wrap_pointer++ = '\t';
982 /* Shifting right by 3 produces the number of tab stops
983 we have already passed, and then adding one and
984 shifting left 3 advances to the next tab stop. */
985 chars_printed = ((chars_printed >> 3) + 1) << 3;
991 *wrap_pointer++ = *lineptr;
993 putc (*lineptr, stream);
998 if (chars_printed >= chars_per_line)
1000 unsigned int save_chars = chars_printed;
1004 /* If we aren't actually wrapping, don't output newline --
1005 if chars_per_line is right, we probably just overflowed
1006 anyway; if it's wrong, let us keep going. */
1008 putc ('\n', stream);
1010 /* Possible new page. */
1011 if (lines_printed >= lines_per_page - 1)
1012 prompt_for_continue ();
1014 /* Now output indentation and wrapped string */
1018 fputs (wrap_indent, stream);
1019 *wrap_pointer = '\0'; /* Null-terminate saved stuff */
1020 fputs (wrap_buffer, stream); /* and eject it */
1021 /* FIXME, this strlen is what prevents wrap_indent from
1022 containing tabs. However, if we recurse to print it
1023 and count its chars, we risk trouble if wrap_indent is
1024 longer than (the user settable) chars_per_line.
1025 Note also that this can set chars_printed > chars_per_line
1026 if we are printing a long string. */
1027 chars_printed = strlen (wrap_indent)
1028 + (save_chars - wrap_column);
1029 wrap_pointer = wrap_buffer; /* Reset buffer */
1030 wrap_buffer[0] = '\0';
1031 wrap_column = 0; /* And disable fancy wrap */
1036 if (*lineptr == '\n')
1039 wrap_here ((char *)0); /* Spit out chars, cancel further wraps */
1041 putc ('\n', stream);
1048 /* fputs_demangled is a variant of fputs_filtered that
1049 demangles g++ names.*/
1052 fputs_demangled (linebuffer, stream, arg_mode)
1057 #define SYMBOL_MAX 1024
1059 #define SYMBOL_CHAR(c) (isascii(c) \
1060 && (isalnum(c) || (c) == '_' || (c) == CPLUS_MARKER))
1062 char buf[SYMBOL_MAX+1];
1063 # define SLOP 5 /* How much room to leave in buf */
1066 if (linebuffer == NULL)
1069 /* If user wants to see raw output, no problem. */
1071 fputs_filtered (linebuffer, stream);
1077 while ( *p != (char) 0 ) {
1080 /* collect non-interesting characters into buf */
1081 while ( *p != (char) 0 && !SYMBOL_CHAR(*p) && i < (int)sizeof(buf)-SLOP ) {
1086 /* output the non-interesting characters without demangling */
1088 fputs_filtered(buf, stream);
1089 i = 0; /* reset buf */
1092 /* and now the interesting characters */
1093 while (i < SYMBOL_MAX
1096 && i < (int)sizeof(buf) - SLOP) {
1104 if ( (result = cplus_demangle(buf, arg_mode)) != NULL ) {
1105 fputs_filtered(result, stream);
1109 fputs_filtered(buf, stream);
1115 /* Print a variable number of ARGS using format FORMAT. If this
1116 information is going to put the amount written (since the last call
1117 to INITIALIZE_MORE_FILTER or the last page break) over the page size,
1118 print out a pause message and do a gdb_readline to get the users
1119 permision to continue.
1121 Unlike fprintf, this function does not return a value.
1123 We implement three variants, vfprintf (takes a vararg list and stream),
1124 fprintf (takes a stream to write on), and printf (the usual).
1126 Note that this routine has a restriction that the length of the
1127 final output line must be less than 255 characters *or* it must be
1128 less than twice the size of the format string. This is a very
1129 arbitrary restriction, but it is an internal restriction, so I'll
1130 put it in. This means that the %s format specifier is almost
1131 useless; unless the caller can GUARANTEE that the string is short
1132 enough, fputs_filtered should be used instead.
1134 Note also that a longjmp to top level may occur in this routine
1135 (since prompt_for_continue may do so) so this routine should not be
1136 called when cleanups are not in place. */
1139 vfprintf_filtered (stream, format, args)
1144 static char *linebuffer = (char *) 0;
1145 static int line_size;
1148 format_length = strlen (format);
1150 /* Allocated linebuffer for the first time. */
1153 linebuffer = (char *) xmalloc (255);
1157 /* Reallocate buffer to a larger size if this is necessary. */
1158 if (format_length * 2 > line_size)
1160 line_size = format_length * 2;
1162 /* You don't have to copy. */
1164 linebuffer = (char *) xmalloc (line_size);
1168 /* This won't blow up if the restrictions described above are
1170 (void) vsprintf (linebuffer, format, args);
1172 fputs_filtered (linebuffer, stream);
1177 fprintf_filtered (va_alist)
1185 stream = va_arg (args, FILE *);
1186 format = va_arg (args, char *);
1188 /* This won't blow up if the restrictions described above are
1190 vfprintf_filtered (stream, format, args);
1196 printf_filtered (va_alist)
1203 format = va_arg (args, char *);
1205 vfprintf_filtered (stdout, format, args);
1212 puts_filtered (string)
1215 fputs_filtered (string, stdout);
1218 /* Return a pointer to N spaces and a null. The pointer is good
1219 until the next call to here. */
1225 static char *spaces;
1226 static int max_spaces;
1232 spaces = (char *) xmalloc (n+1);
1233 for (t = spaces+n; t != spaces;)
1239 return spaces + max_spaces - n;
1242 /* Print N spaces. */
1244 print_spaces_filtered (n, stream)
1248 fputs_filtered (n_spaces (n), stream);
1251 /* C++ demangler stuff. */
1253 /* Print NAME on STREAM, demangling if necessary. */
1255 fprint_symbol (stream, name)
1260 if ((!demangle) || NULL == (demangled = cplus_demangle (name, 1)))
1261 fputs_filtered (name, stream);
1264 fputs_filtered (demangled, stream);
1270 _initialize_utils ()
1272 struct cmd_list_element *c;
1274 c = add_set_cmd ("width", class_support, var_uinteger,
1275 (char *)&chars_per_line,
1276 "Set number of characters gdb thinks are in a line.",
1278 add_show_from_set (c, &showlist);
1279 c->function.sfunc = set_width_command;
1282 (add_set_cmd ("height", class_support,
1283 var_uinteger, (char *)&lines_per_page,
1284 "Set number of lines gdb thinks are in a page.", &setlist),
1287 /* These defaults will be used if we are unable to get the correct
1288 values from termcap. */
1289 lines_per_page = 24;
1290 chars_per_line = 80;
1291 /* Initialize the screen height and width from termcap. */
1293 char *termtype = getenv ("TERM");
1295 /* Positive means success, nonpositive means failure. */
1298 /* 2048 is large enough for all known terminals, according to the
1299 GNU termcap manual. */
1300 char term_buffer[2048];
1304 status = tgetent (term_buffer, termtype);
1309 val = tgetnum ("li");
1311 lines_per_page = val;
1313 /* The number of lines per page is not mentioned
1314 in the terminal description. This probably means
1315 that paging is not useful (e.g. emacs shell window),
1316 so disable paging. */
1317 lines_per_page = UINT_MAX;
1319 val = tgetnum ("co");
1321 chars_per_line = val;
1326 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1328 /* If tere is a better way to determine window size, use it. */
1329 SIGWINCH_HANDLER ();
1332 /* If the output is not a terminal, don't paginate it. */
1333 if (!ISATTY (stdout))
1334 lines_per_page = UINT_MAX;
1336 set_width_command ((char *)NULL, 0, c);
1339 (add_set_cmd ("demangle", class_support, var_boolean,
1341 "Set demangling of encoded C++ names when displaying symbols.",
1346 (add_set_cmd ("sevenbit-strings", class_support, var_boolean,
1347 (char *)&sevenbit_strings,
1348 "Set printing of 8-bit characters in strings as \\nnn.",
1353 (add_set_cmd ("asm-demangle", class_support, var_boolean,
1354 (char *)&asm_demangle,
1355 "Set demangling of C++ names in disassembly listings.",
1360 /* Machine specific function to handle SIGWINCH signal. */
1362 #ifdef SIGWINCH_HANDLER_BODY
1363 SIGWINCH_HANDLER_BODY