X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2Fnat%2Fx86-linux-dregs.c;h=b5dd71e3c7ca2fc4ac73571e91fc0912583165dc;hb=1ee1a363454d88a87ad2ade7530b2a7fb670021e;hp=9865ac63b1417c6b9c4ea2294d710fc51badd8a4;hpb=f2907e49910853edf3c1aec995b3c44b3bba8999;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/nat/x86-linux-dregs.c b/gdb/nat/x86-linux-dregs.c index 9865ac63b1..b5dd71e3c7 100644 --- a/gdb/nat/x86-linux-dregs.c +++ b/gdb/nat/x86-linux-dregs.c @@ -1,6 +1,6 @@ /* Low-level debug register code for GNU/Linux x86 (i386 and x86-64). - Copyright (C) 1999-2018 Free Software Foundation, Inc. + Copyright (C) 1999-2020 Free Software Foundation, Inc. This file is part of GDB. @@ -17,7 +17,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -#include "common-defs.h" +#include "gdbsupport/common-defs.h" #include "nat/gdb_ptrace.h" #include #include "target/waitstatus.h" @@ -43,8 +43,8 @@ x86_linux_dr_get (ptid_t ptid, int regnum) int tid; unsigned long value; - gdb_assert (ptid_lwp_p (ptid)); - tid = ptid_get_lwp (ptid); + gdb_assert (ptid.lwp_p ()); + tid = ptid.lwp (); errno = 0; value = ptrace (PTRACE_PEEKUSER, tid, u_debugreg_offset (regnum), 0); @@ -61,8 +61,8 @@ x86_linux_dr_set (ptid_t ptid, int regnum, unsigned long value) { int tid; - gdb_assert (ptid_lwp_p (ptid)); - tid = ptid_get_lwp (ptid); + gdb_assert (ptid.lwp_p ()); + tid = ptid.lwp (); errno = 0; ptrace (PTRACE_POKEUSER, tid, u_debugreg_offset (regnum), value); @@ -76,7 +76,7 @@ x86_linux_dr_set (ptid_t ptid, int regnum, unsigned long value) the actual debug registers immediately prior to LWP resuming. */ static int -update_debug_registers_callback (struct lwp_info *lwp, void *arg) +update_debug_registers_callback (struct lwp_info *lwp) { lwp_set_debug_registers_changed (lwp, 1); @@ -102,11 +102,11 @@ x86_linux_dr_get_addr (int regnum) void x86_linux_dr_set_addr (int regnum, CORE_ADDR addr) { - ptid_t pid_ptid = ptid_t (ptid_get_pid (current_lwp_ptid ())); + ptid_t pid_ptid = ptid_t (current_lwp_ptid ().pid ()); gdb_assert (DR_FIRSTADDR <= regnum && regnum <= DR_LASTADDR); - iterate_over_lwps (pid_ptid, update_debug_registers_callback, NULL); + iterate_over_lwps (pid_ptid, update_debug_registers_callback); } /* See nat/x86-linux-dregs.h. */ @@ -122,9 +122,9 @@ x86_linux_dr_get_control (void) void x86_linux_dr_set_control (unsigned long control) { - ptid_t pid_ptid = ptid_t (ptid_get_pid (current_lwp_ptid ())); + ptid_t pid_ptid = ptid_t (current_lwp_ptid ().pid ()); - iterate_over_lwps (pid_ptid, update_debug_registers_callback, NULL); + iterate_over_lwps (pid_ptid, update_debug_registers_callback); } /* See nat/x86-linux-dregs.h. */ @@ -148,7 +148,7 @@ x86_linux_update_debug_registers (struct lwp_info *lwp) if (lwp_debug_registers_changed (lwp)) { struct x86_debug_reg_state *state - = x86_debug_reg_state (ptid_get_pid (ptid)); + = x86_debug_reg_state (ptid.pid ()); int i; /* Prior to Linux kernel 2.6.33 commit