2013-08-23 01:46:30 +02:00
|
|
|
/* Wrapper implementation for waitpid for GNU/Linux (LWP layer).
|
|
|
|
|
2017-01-01 07:50:51 +01:00
|
|
|
Copyright (C) 2001-2017 Free Software Foundation, Inc.
|
2013-08-23 01:46:30 +02:00
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
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, see <http://www.gnu.org/licenses/>. */
|
|
|
|
|
2014-09-12 11:57:46 +02:00
|
|
|
#include "common-defs.h"
|
|
|
|
|
2013-08-23 01:46:30 +02:00
|
|
|
#ifdef GDBSERVER
|
2014-09-12 11:57:46 +02:00
|
|
|
/* FIXME: server.h is required for the definition of debug_threads
|
|
|
|
which is used in the gdbserver-specific debug printing in
|
|
|
|
linux_debug. This code should be made available to GDB also,
|
|
|
|
but the lack of a suitable flag to enable it prevents this. */
|
2013-08-23 01:46:30 +02:00
|
|
|
#include "server.h"
|
|
|
|
#endif
|
|
|
|
|
2014-06-19 15:46:38 +02:00
|
|
|
#include "linux-nat.h"
|
|
|
|
#include "linux-waitpid.h"
|
2013-08-23 01:46:30 +02:00
|
|
|
#include "gdb_wait.h"
|
|
|
|
|
|
|
|
/* Print debugging output based on the format string FORMAT and
|
|
|
|
its parameters. */
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
linux_debug (const char *format, ...)
|
|
|
|
{
|
|
|
|
#ifdef GDBSERVER
|
|
|
|
if (debug_threads)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
va_start (args, format);
|
|
|
|
vfprintf (stderr, format, args);
|
|
|
|
va_end (args);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-02-27 15:30:08 +01:00
|
|
|
/* Convert wait status STATUS to a string. Used for printing debug
|
|
|
|
messages only. */
|
|
|
|
|
|
|
|
char *
|
|
|
|
status_to_str (int status)
|
|
|
|
{
|
|
|
|
static char buf[64];
|
|
|
|
|
|
|
|
if (WIFSTOPPED (status))
|
|
|
|
{
|
|
|
|
if (WSTOPSIG (status) == SYSCALL_SIGTRAP)
|
|
|
|
snprintf (buf, sizeof (buf), "%s (stopped at syscall)",
|
|
|
|
strsignal (SIGTRAP));
|
|
|
|
else
|
|
|
|
snprintf (buf, sizeof (buf), "%s (stopped)",
|
|
|
|
strsignal (WSTOPSIG (status)));
|
|
|
|
}
|
|
|
|
else if (WIFSIGNALED (status))
|
|
|
|
snprintf (buf, sizeof (buf), "%s (terminated)",
|
|
|
|
strsignal (WTERMSIG (status)));
|
|
|
|
else
|
|
|
|
snprintf (buf, sizeof (buf), "%d (exited)", WEXITSTATUS (status));
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2015-12-17 15:20:51 +01:00
|
|
|
/* See linux-waitpid.h. */
|
2013-08-23 01:46:30 +02:00
|
|
|
|
|
|
|
int
|
|
|
|
my_waitpid (int pid, int *status, int flags)
|
|
|
|
{
|
|
|
|
int ret, out_errno;
|
|
|
|
|
|
|
|
linux_debug ("my_waitpid (%d, 0x%x)\n", pid, flags);
|
|
|
|
|
2015-12-17 15:20:51 +01:00
|
|
|
do
|
2013-08-23 01:46:30 +02:00
|
|
|
{
|
2015-12-17 15:20:51 +01:00
|
|
|
ret = waitpid (pid, status, flags);
|
2013-08-23 01:46:30 +02:00
|
|
|
}
|
2015-12-17 15:20:51 +01:00
|
|
|
while (ret == -1 && errno == EINTR);
|
|
|
|
out_errno = errno;
|
2013-08-23 01:46:30 +02:00
|
|
|
|
|
|
|
linux_debug ("my_waitpid (%d, 0x%x): status(%x), %d\n",
|
2015-07-30 17:15:24 +02:00
|
|
|
pid, flags, (ret > 0 && status != NULL) ? *status : -1, ret);
|
2013-08-23 01:46:30 +02:00
|
|
|
|
|
|
|
errno = out_errno;
|
|
|
|
return ret;
|
|
|
|
}
|