+2015-03-24 Gary Benson <gbenson@redhat.com>
+
+ * linux-x86-low.c (x86_dr_low_set_addr): Rename to...
+ (x86_linux_dr_set_addr): ...this.
+ (x86_dr_low_get_addr): Rename to...
+ (x86_linux_dr_get_addr): ...this.
+ (x86_dr_low_set_control): Rename to...
+ (x86_linux_dr_set_control): ...this.
+ (x86_dr_low_get_control): Rename to...
+ (x86_linux_dr_get_control): ...this.
+ (x86_dr_low_get_status): Rename to...
+ (x86_linux_dr_get_status): ...this.
+ (x86_dr_low): Update with new function names.
+
2015-03-24 Gary Benson <gbenson@redhat.com>
* Makefile.in (x86-linux.o): New rule.
/* Update the inferior's debug register REGNUM from STATE. */
static void
-x86_dr_low_set_addr (int regnum, CORE_ADDR addr)
+x86_linux_dr_set_addr (int regnum, CORE_ADDR addr)
{
/* Only update the threads of this process. */
ptid_t pid_ptid = pid_to_ptid (ptid_get_pid (current_lwp_ptid ()));
/* Return the inferior's debug register REGNUM. */
static CORE_ADDR
-x86_dr_low_get_addr (int regnum)
+x86_linux_dr_get_addr (int regnum)
{
gdb_assert (DR_FIRSTADDR <= regnum && regnum <= DR_LASTADDR);
/* Update the inferior's DR7 debug control register from STATE. */
static void
-x86_dr_low_set_control (unsigned long control)
+x86_linux_dr_set_control (unsigned long control)
{
/* Only update the threads of this process. */
ptid_t pid_ptid = pid_to_ptid (ptid_get_pid (current_lwp_ptid ()));
/* Return the inferior's DR7 debug control register. */
static unsigned long
-x86_dr_low_get_control (void)
+x86_linux_dr_get_control (void)
{
return x86_linux_dr_get (current_lwp_ptid (), DR_CONTROL);
}
and record it in STATE. */
static unsigned long
-x86_dr_low_get_status (void)
+x86_linux_dr_get_status (void)
{
return x86_linux_dr_get (current_lwp_ptid (), DR_STATUS);
}
/* Low-level function vector. */
struct x86_dr_low_type x86_dr_low =
{
- x86_dr_low_set_control,
- x86_dr_low_set_addr,
- x86_dr_low_get_addr,
- x86_dr_low_get_status,
- x86_dr_low_get_control,
+ x86_linux_dr_set_control,
+ x86_linux_dr_set_addr,
+ x86_linux_dr_get_addr,
+ x86_linux_dr_get_status,
+ x86_linux_dr_get_control,
sizeof (void *),
};
\f