1 /* General utility routines for the remote server for GDB.
2 Copyright (C) 1986, 1989, 1993, 1995, 1996, 1997, 1999, 2000, 2002, 2003
3 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
26 /* Generally useful subroutines used throughout the program. */
28 /* Print the system error message for errno, and also mention STRING
29 as the file name for which the error was encountered.
30 Then return to command level. */
33 perror_with_name (char *string
)
41 err
= strerror (errno
);
43 err
= "unknown error";
45 combined
= (char *) alloca (strlen (err
) + strlen (string
) + 3);
46 strcpy (combined
, string
);
47 strcat (combined
, ": ");
48 strcat (combined
, err
);
50 error ("%s.", combined
);
53 /* Print an error message and return to command level.
54 STRING is the error message, used as a fprintf string,
55 and ARG is passed as an argument to it. */
58 error (const char *string
,...)
60 extern jmp_buf toplevel
;
62 va_start (args
, string
);
64 vfprintf (stderr
, string
, args
);
65 fprintf (stderr
, "\n");
66 longjmp (toplevel
, 1);
69 /* Print an error message and exit reporting failure.
70 This is for a error that we cannot continue from.
71 STRING and ARG are passed to fprintf. */
75 fatal (const char *string
,...)
78 va_start (args
, string
);
79 fprintf (stderr
, "gdb: ");
80 vfprintf (stderr
, string
, args
);
81 fprintf (stderr
, "\n");
88 warning (const char *string
,...)
91 va_start (args
, string
);
92 fprintf (stderr
, "gdb: ");
93 vfprintf (stderr
, string
, args
);
94 fprintf (stderr
, "\n");