mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
* i387-fp.c, linux-arm-low.c, linux-cris-low.c,
linux-crisv32-low.c, linux-i386-low.c, linux-low.c, linux-mips-low.c, linux-s390-low.c, linux-sparc-low.c, linux-x86-64-low.c, linux-xtensa-low.c, proc-service.c, regcache.c, remote-utils.c, server.c, spu-low.c, target.h, thread-db.c, win32-low.c, xtensa-xtregs.c, gdbreplay.c, Makefile.in, configure.ac: Fix whitespace throughout. * configure: Regenerate.
This commit is contained in:
parent
a07b2135db
commit
1b3f60162b
@ -1,3 +1,14 @@
|
||||
2009-03-22 Pedro Alves <pedro@codesourcery.com>
|
||||
|
||||
* i387-fp.c, linux-arm-low.c, linux-cris-low.c,
|
||||
linux-crisv32-low.c, linux-i386-low.c, linux-low.c,
|
||||
linux-mips-low.c, linux-s390-low.c, linux-sparc-low.c,
|
||||
linux-x86-64-low.c, linux-xtensa-low.c, proc-service.c,
|
||||
regcache.c, remote-utils.c, server.c, spu-low.c, target.h,
|
||||
thread-db.c, win32-low.c, xtensa-xtregs.c, gdbreplay.c,
|
||||
Makefile.in, configure.ac: Fix whitespace throughout.
|
||||
* configure: Regenerate.
|
||||
|
||||
2009-03-22 Pedro Alves <pedro@codesourcery.com>
|
||||
|
||||
* inferiors.c (find_inferior): Make it safe for the callback
|
||||
|
@ -989,7 +989,8 @@ retry:
|
||||
{
|
||||
if (WIFEXITED (w))
|
||||
{
|
||||
fprintf (stderr, "\nChild exited with retcode = %x \n", WEXITSTATUS (w));
|
||||
fprintf (stderr, "\nChild exited with retcode = %x \n",
|
||||
WEXITSTATUS (w));
|
||||
*status = 'W';
|
||||
clear_inferiors ();
|
||||
free (all_lwps.head);
|
||||
@ -998,7 +999,8 @@ retry:
|
||||
}
|
||||
else if (!WIFSTOPPED (w))
|
||||
{
|
||||
fprintf (stderr, "\nChild terminated with signal = %x \n", WTERMSIG (w));
|
||||
fprintf (stderr, "\nChild terminated with signal = %x \n",
|
||||
WTERMSIG (w));
|
||||
*status = 'X';
|
||||
clear_inferiors ();
|
||||
free (all_lwps.head);
|
||||
@ -1160,8 +1162,8 @@ linux_resume_one_lwp (struct inferior_list_entry *entry,
|
||||
current_inferior = get_lwp_thread (lwp);
|
||||
|
||||
if (debug_threads)
|
||||
fprintf (stderr, "Resuming lwp %ld (%s, signal %d, stop %s)\n", inferior_pid,
|
||||
step ? "step" : "continue", signal,
|
||||
fprintf (stderr, "Resuming lwp %ld (%s, signal %d, stop %s)\n",
|
||||
inferior_pid, step ? "step" : "continue", signal,
|
||||
lwp->stop_expected ? "expected" : "not expected");
|
||||
|
||||
/* This bit needs some thinking about. If we get a signal that
|
||||
@ -1423,8 +1425,8 @@ fetch_register (int regno)
|
||||
regaddr = register_addr (regno);
|
||||
if (regaddr == -1)
|
||||
return;
|
||||
size = (register_size (regno) + sizeof (PTRACE_XFER_TYPE) - 1)
|
||||
& - sizeof (PTRACE_XFER_TYPE);
|
||||
size = ((register_size (regno) + sizeof (PTRACE_XFER_TYPE) - 1)
|
||||
& - sizeof (PTRACE_XFER_TYPE));
|
||||
buf = alloca (size);
|
||||
for (i = 0; i < size; i += sizeof (PTRACE_XFER_TYPE))
|
||||
{
|
||||
@ -1502,9 +1504,10 @@ usr_store_inferior_registers (int regno)
|
||||
*(PTRACE_XFER_TYPE *) (buf + i));
|
||||
if (errno != 0)
|
||||
{
|
||||
/* At this point, ESRCH should mean the process is already gone,
|
||||
in which case we simply ignore attempts to change its registers.
|
||||
See also the related comment in linux_resume_one_lwp. */
|
||||
/* At this point, ESRCH should mean the process is
|
||||
already gone, in which case we simply ignore attempts
|
||||
to change its registers. See also the related
|
||||
comment in linux_resume_one_lwp. */
|
||||
if (errno == ESRCH)
|
||||
return;
|
||||
|
||||
@ -1638,9 +1641,10 @@ regsets_store_inferior_registers ()
|
||||
}
|
||||
else if (errno == ESRCH)
|
||||
{
|
||||
/* At this point, ESRCH should mean the process is already gone,
|
||||
in which case we simply ignore attempts to change its registers.
|
||||
See also the related comment in linux_resume_one_lwp. */
|
||||
/* At this point, ESRCH should mean the process is
|
||||
already gone, in which case we simply ignore attempts
|
||||
to change its registers. See also the related
|
||||
comment in linux_resume_one_lwp. */
|
||||
return 0;
|
||||
}
|
||||
else
|
||||
@ -1740,13 +1744,16 @@ linux_read_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len)
|
||||
for (i = 0; i < count; i++, addr += sizeof (PTRACE_XFER_TYPE))
|
||||
{
|
||||
errno = 0;
|
||||
buffer[i] = ptrace (PTRACE_PEEKTEXT, inferior_pid, (PTRACE_ARG3_TYPE) addr, 0);
|
||||
buffer[i] = ptrace (PTRACE_PEEKTEXT, inferior_pid,
|
||||
(PTRACE_ARG3_TYPE) addr, 0);
|
||||
if (errno)
|
||||
return errno;
|
||||
}
|
||||
|
||||
/* Copy appropriate bytes out of the buffer. */
|
||||
memcpy (myaddr, (char *) buffer + (memaddr & (sizeof (PTRACE_XFER_TYPE) - 1)), len);
|
||||
memcpy (myaddr,
|
||||
(char *) buffer + (memaddr & (sizeof (PTRACE_XFER_TYPE) - 1)),
|
||||
len);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -225,4 +225,3 @@ struct linux_target_ops the_low_target = {
|
||||
s390_collect_ptrace_register,
|
||||
s390_supply_ptrace_register,
|
||||
};
|
||||
|
||||
|
@ -284,4 +284,3 @@ struct linux_target_ops the_low_target = {
|
||||
NULL, NULL, NULL, NULL,
|
||||
NULL, NULL
|
||||
};
|
||||
|
||||
|
@ -159,5 +159,3 @@ ps_getpid (gdb_ps_prochandle_t ph)
|
||||
{
|
||||
return ph->pid;
|
||||
}
|
||||
|
||||
|
||||
|
@ -169,7 +169,8 @@ registers_from_string (char *buf)
|
||||
|
||||
if (len != register_bytes * 2)
|
||||
{
|
||||
warning ("Wrong sized register packet (expected %d bytes, got %d)", 2*register_bytes, len);
|
||||
warning ("Wrong sized register packet (expected %d bytes, got %d)",
|
||||
2*register_bytes, len);
|
||||
if (len > register_bytes * 2)
|
||||
len = register_bytes * 2;
|
||||
}
|
||||
|
@ -523,7 +523,8 @@ handle_query (char *own_buf, int packet_len, int *new_packet_len_p)
|
||||
{
|
||||
require_running (own_buf);
|
||||
thread_ptr = all_threads.head;
|
||||
sprintf (own_buf, "m%x", thread_to_gdb_id ((struct thread_info *)thread_ptr));
|
||||
sprintf (own_buf, "m%x",
|
||||
thread_to_gdb_id ((struct thread_info *)thread_ptr));
|
||||
thread_ptr = thread_ptr->next;
|
||||
return;
|
||||
}
|
||||
@ -533,7 +534,8 @@ handle_query (char *own_buf, int packet_len, int *new_packet_len_p)
|
||||
require_running (own_buf);
|
||||
if (thread_ptr != NULL)
|
||||
{
|
||||
sprintf (own_buf, "m%x", thread_to_gdb_id ((struct thread_info *)thread_ptr));
|
||||
sprintf (own_buf, "m%x",
|
||||
thread_to_gdb_id ((struct thread_info *)thread_ptr));
|
||||
thread_ptr = thread_ptr->next;
|
||||
return;
|
||||
}
|
||||
@ -800,11 +802,9 @@ handle_query (char *own_buf, int packet_len, int *new_packet_len_p)
|
||||
if (n < 0)
|
||||
write_enn (own_buf);
|
||||
else if (n > len)
|
||||
*new_packet_len_p = write_qxfer_response
|
||||
(own_buf, workbuf, len, 1);
|
||||
*new_packet_len_p = write_qxfer_response (own_buf, workbuf, len, 1);
|
||||
else
|
||||
*new_packet_len_p = write_qxfer_response
|
||||
(own_buf, workbuf, n, 0);
|
||||
*new_packet_len_p = write_qxfer_response (own_buf, workbuf, n, 0);
|
||||
|
||||
free (workbuf);
|
||||
return;
|
||||
|
@ -35,4 +35,3 @@ const xtensa_regtable_t xtensa_regmap_table[] = {
|
||||
{ 44, 176, 0, 0, 4, -1, 0x020c, "scompare1" },
|
||||
{ 0 }
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user