1999-04-16 03:35:26 +02:00
|
|
|
/* General utility routines for the remote server for GDB.
|
2001-03-06 09:22:02 +01:00
|
|
|
Copyright 1986, 1989, 1993, 1995, 1996, 1997, 1999, 2000
|
|
|
|
Free Software Foundation, Inc.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This file is part of GDB.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
1999-07-07 22:19:36 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
Boston, MA 02111-1307, USA. */
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
#include "server.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
/* Generally useful subroutines used throughout the program. */
|
|
|
|
|
|
|
|
/* Print the system error message for errno, and also mention STRING
|
|
|
|
as the file name for which the error was encountered.
|
|
|
|
Then return to command level. */
|
|
|
|
|
|
|
|
void
|
2000-07-30 03:48:28 +02:00
|
|
|
perror_with_name (char *string)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
1999-11-02 05:44:47 +01:00
|
|
|
#ifndef STDC_HEADERS
|
1999-04-16 03:35:26 +02:00
|
|
|
extern int sys_nerr;
|
|
|
|
extern char *sys_errlist[];
|
|
|
|
extern int errno;
|
1999-11-02 05:44:47 +01:00
|
|
|
#endif
|
|
|
|
const char *err;
|
1999-04-16 03:35:26 +02:00
|
|
|
char *combined;
|
|
|
|
|
|
|
|
if (errno < sys_nerr)
|
|
|
|
err = sys_errlist[errno];
|
|
|
|
else
|
|
|
|
err = "unknown error";
|
|
|
|
|
|
|
|
combined = (char *) alloca (strlen (err) + strlen (string) + 3);
|
|
|
|
strcpy (combined, string);
|
|
|
|
strcat (combined, ": ");
|
|
|
|
strcat (combined, err);
|
|
|
|
|
|
|
|
error ("%s.", combined);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Print an error message and return to command level.
|
|
|
|
STRING is the error message, used as a fprintf string,
|
|
|
|
and ARG is passed as an argument to it. */
|
|
|
|
|
|
|
|
NORETURN void
|
1999-07-07 22:19:36 +02:00
|
|
|
error (const char *string,...)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
extern jmp_buf toplevel;
|
|
|
|
va_list args;
|
|
|
|
va_start (args, string);
|
|
|
|
fflush (stdout);
|
|
|
|
vfprintf (stderr, string, args);
|
|
|
|
fprintf (stderr, "\n");
|
1999-07-07 22:19:36 +02:00
|
|
|
longjmp (toplevel, 1);
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Print an error message and exit reporting failure.
|
|
|
|
This is for a error that we cannot continue from.
|
|
|
|
STRING and ARG are passed to fprintf. */
|
|
|
|
|
|
|
|
/* VARARGS */
|
|
|
|
NORETURN void
|
1999-07-07 22:19:36 +02:00
|
|
|
fatal (char *string,...)
|
1999-04-16 03:35:26 +02:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
va_start (args, string);
|
|
|
|
fprintf (stderr, "gdb: ");
|
|
|
|
vfprintf (stderr, string, args);
|
|
|
|
fprintf (stderr, "\n");
|
|
|
|
va_end (args);
|
|
|
|
exit (1);
|
|
|
|
}
|