mirror of
git://sourceware.org/git/valgrind.git
synced 2026-01-12 00:19:31 +08:00
- Update COPYING and VEX/LICENSE.GPL to version 3. - Update README, NEWS, docs/manual license and contributing text. - Update file headers to say either version 3 of the License, or (at your option) any later version. - Leave tests and perf file headers as is, unless the code is derived from Valgrind/VEX. - Leave valgrind.h, cachegrind.h, callgrind.h, drd.h, helgrind.h, memcheck.h and dhat.h Hybrid-BSD licensed.
89 lines
2.5 KiB
C
89 lines
2.5 KiB
C
/* General utility routines for the remote server for GDB.
|
|
Copyright (C) 1986, 1989, 1993, 1995, 1996, 1997, 1999, 2000, 2002, 2003,
|
|
2011
|
|
Free Software Foundation, Inc.
|
|
|
|
This file is part of GDB.
|
|
It has been modified to integrate it in valgrind
|
|
|
|
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 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
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.
|
|
|
|
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., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA. */
|
|
|
|
#include "server.h"
|
|
/* Generally useful subroutines used throughout the program. */
|
|
|
|
/* Print the system error message for sr.
|
|
Then print the rest of the args. */
|
|
void sr_perror (SysRes sr, const char *string,...)
|
|
{
|
|
va_list args;
|
|
if (sr_isError (sr))
|
|
VG_(umsg) ("error %lu %s\n", sr_Err(sr), VG_(strerror) (sr_Err(sr)));
|
|
else
|
|
VG_(umsg) ("sr_perror called with no error!!!\n");
|
|
va_start (args, string);
|
|
VG_(vmessage) ( Vg_UserMsg, string, args );
|
|
va_end (args);
|
|
}
|
|
|
|
/* 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. */
|
|
|
|
void error (const char *string,...)
|
|
{
|
|
va_list args;
|
|
va_start (args, string);
|
|
VG_(vmessage) ( Vg_UserMsg, string, args );
|
|
va_end(args);
|
|
VG_MINIMAL_LONGJMP(toplevel);
|
|
}
|
|
|
|
/* 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 */
|
|
void fatal (const char *string,...)
|
|
{
|
|
va_list args;
|
|
va_start (args, string);
|
|
VG_(vmessage) ( Vg_UserMsg, string, args );
|
|
va_end (args);
|
|
VG_(exit) (1);
|
|
}
|
|
|
|
/* VARARGS */
|
|
void warning (const char *string,...)
|
|
{
|
|
va_list args;
|
|
va_start (args, string);
|
|
VG_(vmessage) ( Vg_UserMsg, string, args );
|
|
va_end (args);
|
|
}
|
|
|
|
#if 0
|
|
/* print timestamp */
|
|
static
|
|
void dbgts(void)
|
|
{
|
|
struct vki_timeval dbgtv;
|
|
SysRes res;
|
|
res = VG_(do_syscall2)(__NR_gettimeofday, (UWord)&dbgtv, (UWord)NULL);
|
|
// gettimeofday(&dbgtv, NULL);
|
|
dlog(0, "%ld.%6ld ", dbgtv.tv_sec, dbgtv.tv_usec);
|
|
}
|
|
#endif
|