Rename functions and make nonstatic as necessary
[deliverable/binutils-gdb.git] / gdb / gdbserver / ChangeLog
index 35225f10ca0bab481fd9faebc4a25b8fbca1a8bf..3186336fca426b13956d0ca6addfc6697ce28bba 100644 (file)
@@ -1,3 +1,128 @@
+2014-06-18  Gary Benson  <gbenson@redhat.com>
+
+       * i386-low.h (i386_low_insert_watchpoint): Renamed to
+       i386_dr_insert_watchpoint.
+       (i386_low_remove_watchpoint): Renamed to
+       i386_dr_remove_watchpoint.
+       (i386_low_region_ok_for_watchpoint): Renamed to
+       i386_dr_region_ok_for_watchpoint.
+       (i386_low_stopped_data_address): Renamed to
+       i386_dr_stopped_data_address.
+       (i386_low_stopped_by_watchpoint): Renamed to
+       i386_dr_stopped_by_watchpoint.
+       * i386-low.c (i386_show_dr): Renamed to
+       i386_dr_show and made nonstatic.  All uses updated.
+       (i386_length_and_rw_bits): Renamed to
+       i386_dr_length_and_rw_bits and made nonstatic.
+       All uses updated.
+       (i386_insert_aligned_watchpoint): Renamed to
+       i386_dr_insert_aligned_watchpoint and made nonstatic.
+       All uses updated.
+       (i386_remove_aligned_watchpoint): Renamed to
+       i386_dr_remove_aligned_watchpoint and made nonstatic.
+       All uses updated.
+       (i386_update_inferior_debug_regs): Renamed to
+       i386_dr_update_inferior_debug_regs and made nonstatic.
+       All uses updated.
+       (i386_low_insert_watchpoint): Renamed to
+       i386_dr_insert_watchpoint.  All uses updated.
+       (i386_low_remove_watchpoint): Renamed to
+       i386_dr_remove_watchpoint.  All uses updated.
+       (i386_low_region_ok_for_watchpoint): Renamed to
+       i386_dr_region_ok_for_watchpoint.  All uses updated.
+       (i386_low_stopped_data_address): Renamed to
+       i386_dr_stopped_data_address.  All uses updated.
+       (i386_low_stopped_by_watchpoint): Renamed to
+       i386_dr_stopped_by_watchpoint.  All uses updated.
+
+2014-06-18  Gary Benson  <gbenson@redhat.com>
+
+       * i386-low.c (i386_dr_low_can_set_addr): New macro.
+       (i386_dr_low_can_set_control): Likewise.
+       (i386_insert_aligned_watchpoint): New check.
+
+2014-06-18  Gary Benson  <gbenson@redhat.com>
+
+       * i386-low.c (i386_update_inferior_debug_regs) <inf_state>:
+       Renamed to state.
+
+2014-06-18  Gary Benson  <gbenson@redhat.com>
+
+       * i386-low.c (i386_length_and_rw_bits): Use internal_error
+       instead of fatal and error.
+       (i386_handle_nonaligned_watchpoint): Likewise.
+
+2014-06-18  Gary Benson  <gbenson@redhat.com>
+
+       * i386-low.c (i386_get_debug_register_length): New macro.
+       (TARGET_HAS_DR_LEN_8): Remove conditional.  Use above macro.
+       (i386_show_dr): Use debug_printf instead of fprintf.  Use
+       phex to format values.
+
+2014-06-18  Gary Benson  <gbenson@redhat.com>
+
+       * i386-low.h: Comment changes.
+       * i386-low.c: Likewise.
+
+2014-06-18  Gary Benson  <gbenson@redhat.com>
+
+       * i386-low.c: Whitespace changes.
+
+2014-06-12  Tom Tromey  <tromey@redhat.com>
+
+       * utils.c (freeargv): Remove.
+
+2014-06-12  Tom Tromey  <tromey@redhat.com>
+
+       * debug.c (debug_printf): Remove HAVE_GETTIMEOFDAY checks.
+       * server.c (monitor_show_help): Remove HAVE_GETTIMEOFDAY check.
+       (parse_debug_format_options): Likewise.
+       (gdbserver_usage): Likewise.
+       * Makefile.in (LIBIBERTY_BUILDDIR, LIBIBERTY): New variables.
+       (SUBDIRS, REQUIRED_SUBDIRS): Add libiberty.
+       (gdbserver$(EXEEXT), gdbreplay$(EXEEXT)): Depend on and link
+       against libiberty.
+       ($(LIBGNU)): Depend on libiberty.
+       (all-lib): Recurse into all subdirs.
+       (install-only): Invoke "install" target in subdirs.
+       (vasprintf.o, vsnprintf.o, safe-ctype.o, lbasename.o): Remove
+       targets.
+       * configure: Rebuild.
+       * configure.ac: Add ACX_CONFIGURE_DIR for libiberty.  Don't check
+       for vasprintf, vsnprintf, or gettimeofday.
+       * configure.srv: Don't add safe-ctype.o or lbasename.o to
+       srv_tgtobj.
+
+2014-06-05  Joel Brobecker  <brobecker@adacore.com>
+
+       * development.sh: Delete.
+       * Makefile.in (config.status): Adjust dependency on development.sh.
+       * configure.ac: Adjust development.sh source call.
+       * configure: Regenerate.
+
+2014-06-02  Pedro Alves  <palves@redhat.com>
+
+       * ax.c (gdb_free_agent_expr): New function.
+       * ax.h (gdb_free_agent_expr): New declaration.
+       * mem-break.c (delete_gdb_breakpoint_1): Also clear the commands
+       list.
+       (clear_breakpoint_conditions, clear_breakpoint_commands): Make
+       static.
+       (clear_breakpoint_conditions_and_commands): New function.
+       * mem-break.h (clear_breakpoint_conditions): Delete declaration.
+       (clear_breakpoint_conditions_and_commands): New declaration.
+
+2014-05-23  Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>
+
+       * linux-aarch64-low.c (asm/ptrace.h): Include.
+
+2014-05-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       Fix TLS access for -static -pthread.
+       * gdbserver/thread-db.c (struct thread_db): Add td_thr_tlsbase_p.
+       (thread_db_get_tls_address): Call it if LOAD_MODULE is zero.
+       (thread_db_load_search, try_thread_db_load_1): Initialize it.
+
 2014-05-20  Pedro Alves  <palves@redhat.com>
 
        * linux-aarch64-low.c (aarch64_insert_point)
This page took 0.0316 seconds and 4 git commands to generate.