diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2018-05-30 14:54:34 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2018-05-30 14:54:34 -0400 |
commit | 222312d359fe0a68f8583ba315583ee8cc94f252 (patch) | |
tree | 701e5162335a218b0205d5ac5844f7fc6187c858 /gdb/arm-linux-nat.c | |
parent | 1869e86f2eb13a9e1d1c42b97cdb98fef88afd83 (diff) | |
download | fsf-binutils-gdb-222312d359fe0a68f8583ba315583ee8cc94f252.zip fsf-binutils-gdb-222312d359fe0a68f8583ba315583ee8cc94f252.tar.gz fsf-binutils-gdb-222312d359fe0a68f8583ba315583ee8cc94f252.tar.bz2 |
Remove regcache_get_ptid
Remove regcache_get_ptid, change all callers to call the regcache method
directly.
gdb/ChangeLog:
* regcache.h (regcache_get_ptid): Remove, update all callers to
call regcache::ptid instead.
* regcache.c (regcache_get_ptid): Remove.
Diffstat (limited to 'gdb/arm-linux-nat.c')
-rw-r--r-- | gdb/arm-linux-nat.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gdb/arm-linux-nat.c b/gdb/arm-linux-nat.c index 30030b4..ccf812b 100644 --- a/gdb/arm-linux-nat.c +++ b/gdb/arm-linux-nat.c @@ -119,7 +119,7 @@ fetch_fpregs (struct regcache *regcache) gdb_byte fp[ARM_LINUX_SIZEOF_NWFPE]; /* Get the thread id for the ptrace call. */ - tid = ptid_get_lwp (regcache_get_ptid (regcache)); + tid = ptid_get_lwp (regcache->ptid ()); /* Read the floating point state. */ if (have_ptrace_getregset == TRIBOOL_TRUE) @@ -156,7 +156,7 @@ store_fpregs (const struct regcache *regcache) gdb_byte fp[ARM_LINUX_SIZEOF_NWFPE]; /* Get the thread id for the ptrace call. */ - tid = ptid_get_lwp (regcache_get_ptid (regcache)); + tid = ptid_get_lwp (regcache->ptid ()); /* Read the floating point state. */ if (have_ptrace_getregset == TRIBOOL_TRUE) @@ -210,7 +210,7 @@ fetch_regs (struct regcache *regcache) elf_gregset_t regs; /* Get the thread id for the ptrace call. */ - tid = ptid_get_lwp (regcache_get_ptid (regcache)); + tid = ptid_get_lwp (regcache->ptid ()); if (have_ptrace_getregset == TRIBOOL_TRUE) { @@ -237,7 +237,7 @@ store_regs (const struct regcache *regcache) elf_gregset_t regs; /* Get the thread id for the ptrace call. */ - tid = ptid_get_lwp (regcache_get_ptid (regcache)); + tid = ptid_get_lwp (regcache->ptid ()); /* Fetch the general registers. */ if (have_ptrace_getregset == TRIBOOL_TRUE) @@ -285,7 +285,7 @@ fetch_wmmx_regs (struct regcache *regcache) int ret, regno, tid; /* Get the thread id for the ptrace call. */ - tid = ptid_get_lwp (regcache_get_ptid (regcache)); + tid = ptid_get_lwp (regcache->ptid ()); ret = ptrace (PTRACE_GETWMMXREGS, tid, 0, regbuf); if (ret < 0) @@ -311,7 +311,7 @@ store_wmmx_regs (const struct regcache *regcache) int ret, regno, tid; /* Get the thread id for the ptrace call. */ - tid = ptid_get_lwp (regcache_get_ptid (regcache)); + tid = ptid_get_lwp (regcache->ptid ()); ret = ptrace (PTRACE_GETWMMXREGS, tid, 0, regbuf); if (ret < 0) @@ -350,7 +350,7 @@ fetch_vfp_regs (struct regcache *regcache) struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); /* Get the thread id for the ptrace call. */ - tid = ptid_get_lwp (regcache_get_ptid (regcache)); + tid = ptid_get_lwp (regcache->ptid ()); if (have_ptrace_getregset == TRIBOOL_TRUE) { @@ -379,7 +379,7 @@ store_vfp_regs (const struct regcache *regcache) struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); /* Get the thread id for the ptrace call. */ - tid = ptid_get_lwp (regcache_get_ptid (regcache)); + tid = ptid_get_lwp (regcache->ptid ()); if (have_ptrace_getregset == TRIBOOL_TRUE) { |