mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-18 21:34:13 +08:00
* sparc-nat.c (fetch_inferior_registers)
(store_inferior_registers, sparc_xfer_wcookie): Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
This commit is contained in:
@ -1,5 +1,9 @@
|
|||||||
2004-08-15 Mark Kettenis <kettenis@gnu.org>
|
2004-08-15 Mark Kettenis <kettenis@gnu.org>
|
||||||
|
|
||||||
|
* sparc-nat.c (fetch_inferior_registers)
|
||||||
|
(store_inferior_registers, sparc_xfer_wcookie):
|
||||||
|
Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
|
||||||
|
|
||||||
* alphabsd-nat.c (fetch_inferior_registers):
|
* alphabsd-nat.c (fetch_inferior_registers):
|
||||||
(store_inferior_registers): Replace PTRACE_ARG3_TYPE with
|
(store_inferior_registers): Replace PTRACE_ARG3_TYPE with
|
||||||
PTRACE_TYPE_ARG3.
|
PTRACE_TYPE_ARG3.
|
||||||
|
@ -166,7 +166,7 @@ fetch_inferior_registers (int regnum)
|
|||||||
{
|
{
|
||||||
gregset_t regs;
|
gregset_t regs;
|
||||||
|
|
||||||
if (ptrace (PTRACE_GETREGS, pid, (PTRACE_ARG3_TYPE) ®s, 0) == -1)
|
if (ptrace (PTRACE_GETREGS, pid, (PTRACE_TYPE_ARG3) ®s, 0) == -1)
|
||||||
perror_with_name ("Couldn't get registers");
|
perror_with_name ("Couldn't get registers");
|
||||||
|
|
||||||
sparc_supply_gregset (sparc_gregset, regcache, -1, ®s);
|
sparc_supply_gregset (sparc_gregset, regcache, -1, ®s);
|
||||||
@ -178,7 +178,7 @@ fetch_inferior_registers (int regnum)
|
|||||||
{
|
{
|
||||||
fpregset_t fpregs;
|
fpregset_t fpregs;
|
||||||
|
|
||||||
if (ptrace (PTRACE_GETFPREGS, pid, (PTRACE_ARG3_TYPE) &fpregs, 0) == -1)
|
if (ptrace (PTRACE_GETFPREGS, pid, (PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
|
||||||
perror_with_name ("Couldn't get floating point status");
|
perror_with_name ("Couldn't get floating point status");
|
||||||
|
|
||||||
sparc_supply_fpregset (regcache, -1, &fpregs);
|
sparc_supply_fpregset (regcache, -1, &fpregs);
|
||||||
@ -201,12 +201,12 @@ store_inferior_registers (int regnum)
|
|||||||
{
|
{
|
||||||
gregset_t regs;
|
gregset_t regs;
|
||||||
|
|
||||||
if (ptrace (PTRACE_GETREGS, pid, (PTRACE_ARG3_TYPE) ®s, 0) == -1)
|
if (ptrace (PTRACE_GETREGS, pid, (PTRACE_TYPE_ARG3) ®s, 0) == -1)
|
||||||
perror_with_name ("Couldn't get registers");
|
perror_with_name ("Couldn't get registers");
|
||||||
|
|
||||||
sparc_collect_gregset (sparc_gregset, regcache, regnum, ®s);
|
sparc_collect_gregset (sparc_gregset, regcache, regnum, ®s);
|
||||||
|
|
||||||
if (ptrace (PTRACE_SETREGS, pid, (PTRACE_ARG3_TYPE) ®s, 0) == -1)
|
if (ptrace (PTRACE_SETREGS, pid, (PTRACE_TYPE_ARG3) ®s, 0) == -1)
|
||||||
perror_with_name ("Couldn't write registers");
|
perror_with_name ("Couldn't write registers");
|
||||||
|
|
||||||
/* Deal with the stack regs. */
|
/* Deal with the stack regs. */
|
||||||
@ -227,7 +227,7 @@ store_inferior_registers (int regnum)
|
|||||||
{
|
{
|
||||||
fpregset_t fpregs, saved_fpregs;
|
fpregset_t fpregs, saved_fpregs;
|
||||||
|
|
||||||
if (ptrace (PTRACE_GETFPREGS, pid, (PTRACE_ARG3_TYPE) &fpregs, 0) == -1)
|
if (ptrace (PTRACE_GETFPREGS, pid, (PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
|
||||||
perror_with_name ("Couldn't get floating-point registers");
|
perror_with_name ("Couldn't get floating-point registers");
|
||||||
|
|
||||||
memcpy (&saved_fpregs, &fpregs, sizeof (fpregs));
|
memcpy (&saved_fpregs, &fpregs, sizeof (fpregs));
|
||||||
@ -240,7 +240,7 @@ store_inferior_registers (int regnum)
|
|||||||
if (memcmp (&saved_fpregs, &fpregs, sizeof (fpregs)) != 0)
|
if (memcmp (&saved_fpregs, &fpregs, sizeof (fpregs)) != 0)
|
||||||
{
|
{
|
||||||
if (ptrace (PTRACE_SETFPREGS, pid,
|
if (ptrace (PTRACE_SETFPREGS, pid,
|
||||||
(PTRACE_ARG3_TYPE) &fpregs, 0) == -1)
|
(PTRACE_TYPE_ARG3) &fpregs, 0) == -1)
|
||||||
perror_with_name ("Couldn't write floating-point registers");
|
perror_with_name ("Couldn't write floating-point registers");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -284,7 +284,7 @@ sparc_xfer_wcookie (struct target_ops *ops, enum target_object object,
|
|||||||
gdb_assert (sizeof (wcookie) == sizeof (register_t));
|
gdb_assert (sizeof (wcookie) == sizeof (register_t));
|
||||||
|
|
||||||
/* Fetch the cookie. */
|
/* Fetch the cookie. */
|
||||||
if (ptrace (PT_WCOOKIE, pid, (PTRACE_ARG3_TYPE) &wcookie, 0) == -1)
|
if (ptrace (PT_WCOOKIE, pid, (PTRACE_TYPE_ARG3) &wcookie, 0) == -1)
|
||||||
{
|
{
|
||||||
if (errno != EINVAL)
|
if (errno != EINVAL)
|
||||||
perror_with_name ("Couldn't get StackGhost cookie");
|
perror_with_name ("Couldn't get StackGhost cookie");
|
||||||
|
Reference in New Issue
Block a user