Browse Source

* infrun.c (child_attach): Don't allow gdb to attach to itself.

It gets permanently stuck in many OSes.
* breakpoint.c, infcmd.c, infrun.c, utils.c:  Change many printfs
to printf_filtered.
* breakpoint.c: Improve	help text for info breakpoints.
gdb-4_18-branch
Stu Grossman 35 years ago
parent
commit
bcf2e6ab49
  1. 3
      gdb/ChangeLog
  2. 18
      gdb/utils.c

3
gdb/ChangeLog

@ -2,7 +2,8 @@ Tue May 12 14:15:48 1992 Stu Grossman (grossman at cygnus.com)
* infrun.c (child_attach): Don't allow gdb to attach to itself. * infrun.c (child_attach): Don't allow gdb to attach to itself.
It gets permanently stuck in many OSes. It gets permanently stuck in many OSes.
* breakpoint.c, infcmd.c, infrun.c: Change many printfs to printf_filtered. * breakpoint.c, infcmd.c, infrun.c, utils.c: Change many printfs
to printf_filtered.
* breakpoint.c: Improve help text for info breakpoints. * breakpoint.c: Improve help text for info breakpoints.
Mon May 11 14:17:18 1992 John Gilmore (gnu at cygnus.com) Mon May 11 14:17:18 1992 John Gilmore (gnu at cygnus.com)

18
gdb/utils.c

@ -31,6 +31,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "terminal.h" #include "terminal.h"
#include "bfd.h" #include "bfd.h"
#include "target.h" #include "target.h"
#include "demangle.h"
/* Prototypes for local functions */ /* Prototypes for local functions */
@ -251,10 +252,10 @@ error (va_alist)
wrap_here(""); /* Force out any buffered output */ wrap_here(""); /* Force out any buffered output */
fflush (stdout); fflush (stdout);
if (error_pre_print) if (error_pre_print)
fprintf (stderr, error_pre_print); fprintf_filtered (stderr, error_pre_print);
string = va_arg (args, char *); string = va_arg (args, char *);
vfprintf (stderr, string, args); vfprintf_filtered (stderr, string, args);
fprintf (stderr, "\n"); fprintf_filtered (stderr, "\n");
va_end (args); va_end (args);
return_to_top_level (); return_to_top_level ();
} }
@ -391,7 +392,7 @@ print_sys_errmsg (string, errcode)
strcat (combined, ": "); strcat (combined, ": ");
strcat (combined, err); strcat (combined, err);
printf ("%s.\n", combined); fprintf (stderr, "%s.\n", combined);
} }
/* Control C eventually causes this to be called, at a convenient time. */ /* Control C eventually causes this to be called, at a convenient time. */
@ -697,9 +698,9 @@ query (va_alist)
{ {
va_start (args); va_start (args);
ctlstr = va_arg (args, char *); ctlstr = va_arg (args, char *);
vfprintf (stdout, ctlstr, args); vfprintf_filtered (stdout, ctlstr, args);
va_end (args); va_end (args);
printf ("(y or n) "); printf_filtered ("(y or n) ");
fflush (stdout); fflush (stdout);
answer = fgetc (stdin); answer = fgetc (stdin);
clearerr (stdin); /* in case of C-d */ clearerr (stdin); /* in case of C-d */
@ -718,7 +719,7 @@ query (va_alist)
return 1; return 1;
if (answer == 'N') if (answer == 'N')
return 0; return 0;
printf ("Please answer y or n.\n"); printf_filtered ("Please answer y or n.\n");
} }
} }
@ -1291,7 +1292,8 @@ fprint_symbol (stream, name)
char *name; char *name;
{ {
char *demangled; char *demangled;
if ((!demangle) || NULL == (demangled = cplus_demangle (name, 1))) if ((!demangle)
|| NULL == (demangled = cplus_demangle (name, DMGL_PARAMS | DMGL_ANSI)))
fputs_filtered (name, stream); fputs_filtered (name, stream);
else else
{ {

Loading…
Cancel
Save