* i387-fp.c, linux-arm-low.c, linux-cris-low.c,
[deliverable/binutils-gdb.git] / gdb / gdbserver / ChangeLog
index 0b5d10b551ee3ef38e928ada45c55326e0dd6061..90dc0120ac8002ddd911124ececa18eff5718c47 100644 (file)
@@ -1,3 +1,235 @@
+2009-03-22  Pedro Alves  <pedro@codesourcery.com>
+
+       * i387-fp.c, linux-arm-low.c, linux-cris-low.c,
+       linux-crisv32-low.c, linux-i386-low.c, linux-low.c,
+       linux-mips-low.c, linux-s390-low.c, linux-sparc-low.c,
+       linux-x86-64-low.c, linux-xtensa-low.c, proc-service.c,
+       regcache.c, remote-utils.c, server.c, spu-low.c, target.h,
+       thread-db.c, win32-low.c, xtensa-xtregs.c, gdbreplay.c,
+       Makefile.in, configure.ac: Fix whitespace throughout.
+       * configure: Regenerate.
+
+2009-03-22  Pedro Alves  <pedro@codesourcery.com>
+
+       * inferiors.c (find_inferior): Make it safe for the callback
+       function to delete the currently iterated inferior.
+
+2009-03-22  Pedro Alves  <pedro@codesourcery.com>
+
+       * Makefile.in (linuw_low_h): Move higher.
+       (thread-db.o): Depend on $(linux_low_h).
+
+2009-03-17  Pedro Alves  <pedro@codesourcery.com>
+
+       Rename "process" to "lwp" throughout.
+
+       * linux-low.c (all_processes): Rename to...
+       (all_lwps): ... this.
+       (inferior_pid, handle_extended_wait, get_stop_pc): Adjust.
+       (add_process): Rename to ...
+       (add_lwp): ... this.  Adjust.
+       (linux_create_inferior): Adjust.
+       (linux_attach_lwp): Adjust.
+       (linux_attach): Adjust.
+       (linux_kill_one_process): Rename to ...
+       (linux_kill_one_lwp): ... this.  Adjust.
+       (linux_kill): Adjust.
+       (linux_detach_one_process): Rename to ...
+       (linux_detach_one_lwp): ... this.  Adjust.
+       (linux_detach): Adjust.
+       (check_removed_breakpoint): Adjust.
+       (status_pending_p): Adjust.
+       (linux_wait_for_process): Rename to ...
+       (linux_wait_for_lwp): ... this.  Adjust.
+       (linux_wait_for_event): Adjust.
+       (send_sigstop): Adjust.
+       (wait_for_sigstop): Adjust.
+       (stop_all_processes): Rename to ...
+       (stop_all_lwps): ... this.
+       (linux_resume_one_process): Rename to ...
+       (linux_resume_one_lwp): ... this.  Adjust.
+       (linux_set_resume_request, linux_continue_one_thread)
+       (linux_queue_one_thread, resume_status_pending_p)
+       (usr_store_inferior_registers, regsets_store_inferior_registers)
+       (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
+       Adjust.
+       * linux-low.h (get_process): Rename to ...
+       (get_lwp): ... this.  Adjust.
+       (get_thread_process): Rename to ...
+       (get_thread_lwp): ... this.  Adjust.
+       (get_process_thread): Rename to ...
+       (get_lwp_thread): ... this.  Adjust.
+       (struct process_info): Rename to ...
+       (struct lwp_info): ... this.
+       (all_processes): Rename to ...
+       (all_lwps): ... this.
+       * proc-service.c (ps_lgetregs): Adjust.
+       * thread-db.c (thread_db_create_event, find_one_thread)
+       (maybe_attach_thread, thread_db_get_tls_address): Adjust.
+
+2009-03-14  Pedro Alves  <pedro@codesourcery.com>
+
+       * server.c (handle_query): Handle "qAttached".
+
+2009-03-13  Nathan Sidwell  <nathan@codesourcery.com>
+
+       * Makefile.in, hostio-errno.c, errno.c, xtensa-xtregs.c: Change to
+       GPLv3, update license URL.
+
+2009-03-01  Doug Evans  <dje@google.com>
+
+       * Makefile.in (INCLUDE_CFLAGS): Add -I$(srcdir)/../common.
+       (server_h): Add gdb_signals.h.
+       (signals.o): Update.
+       * server.h (target_signal_from_host,target_signal_to_host_p)
+       (target_signal_to_host,target_signal_to_name): Moved to gdb_signals.h.
+
+2009-02-14  Pierre Muller  <muller@ics.u-strasbg.fr>
+
+       * remote-utils.c (getpkt): Also generate remote-debug
+       information if noack_mode is set.
+
+2009-02-06  Pedro Alves  <pedro@codesourcery.com>
+
+       * server.c (handle_query): Report qXfer:siginfo:read and
+       qXfer:siginfo:write as supported and handle them.
+       * target.h (struct target_ops) <qxfer_siginfo>: New field.
+       * linux-low.c (linux_xfer_siginfo): New.
+       (linux_target_ops): Set it.
+
+2009-01-26  Pedro Alves  <pedro@codesourcery.com>
+
+       * server.c (gdbserver_usage): Mention --remote-debug.
+       (main): Accept '--remote-debug' switch.
+
+2009-01-18  Doug Evans  <dje@google.com>
+
+       * regcache.c (new_register_cache): No need to check result of xcalloc.
+       * server.c (handle_search_memory): Back out calls to xmalloc,
+       result is checked and error is returned to user upon failure.
+       (handle_query): Ditto.  Add more checks for result of malloc.
+       (handle_v_cont): Check result of malloc, report error back to
+       user upon failure.
+       (handle_v_run): Ditto.  Call freeargv.
+       * server.h (freeargv): Declare.
+       * utils.c (freeargv): New fn.
+
+2009-01-15  Doug Evans  <dje@google.com>
+
+       * gdbreplay.c (perror_with_name): Make arg const char *.
+       * server.h (target_signal_to_name): Make return type const char *.
+       * thread-db.c (thread_db_err_str): Make return type const char *.
+       * utils.c (perror_with_name): Make arg const char *.
+
+2009-01-14  Pedro Alves  <pedro@codesourcery.com>
+
+       * win32-low.c (get_child_debug_event): Issue a final DBG_CONTINUE
+       when handling a EXIT_PROCESS_DEBUG_EVENT.
+
+2009-01-06  Joel Brobecker  <brobecker@adacore.com>
+
+       * gdbreplay.c (gdbreplay_version): Update copyright year.
+       * server.c (gdbserver_version): Likewise.
+
+2009-01-05  Doug Evans  <dje@google.com>
+
+       * linux-low.c (linux_attach_lwp): Add some comments/fixmes.
+       (handle_extended_wait): Improve comment.
+
+2008-12-13  Doug Evans  <dje@google.com>
+
+       * utils.c (xmalloc,xcalloc,xstrdup): New fns.
+       * server.h (ATTR_MALLOC): New macro.
+       (xmalloc,xcalloc,xstrdup): Declare.
+       * hostio.c: Replace malloc,calloc,strdup with xmalloc,xcalloc,xstrdup.
+       * inferiors.c: Ditto.
+       * linux-low.c: Ditto.
+       * mem-break.c: Ditto.
+       * regcache.c: Ditto.
+       * remote-utils.c: Ditto.
+       * server.c: Ditto.
+       * target.c: Ditto.
+       * win32-low.c: Ditto.
+
+2008-12-12  Doug Evans  <dje@google.com>
+
+       * linux-low.c (linux_wait_for_process): Don't clobber current_inferior
+       in debugging printf.
+
+       * linux-low.c (handle_extended_wait): Simplify, use my_waitpid.
+
+2008-12-09  Doug Evans  <dje@google.com>
+
+       * linux-low.h (struct process_info): Delete member tid, unused.
+       * thread-db.c (find_one_thread): Update.
+       (maybe_attach_thread): Update.
+
+2008-12-02  Pedro Alves  <pedro@codesourcery.com>
+
+        * target.h (struct target_ops): Add qxfer_osdata member.
+        * linux-low.c: Include ctype.h and pwd.h and sys/types.h
+        and dirent.h.
+        (linux_qxfer_osdata): New functions.
+        (linux_target_ops): Register linux_qxfer_osdata as qxfer_osdata
+        callback.
+        * server.c (handle_query): Handle "qXfer:osdata:read:".
+        * remote-utils.c (buffer_grow, buffer_free, buffer_init, buffer_finish)
+        (buffer_xml_printf): New functions.
+        * server.h (struct buffer): New.
+        (buffer_grow_str, buffer_grow_str0): New macros.
+        (buffer_grow, buffer_free, buffer_init, buffer_finish)
+        (buffer_xml_printf): Declare.
+
+2008-11-24  Doug Evans  <dje@google.com>
+
+       * Makefile.in (VERSION,DIST,LINT,LINTFLAGS): Delete, unused.
+
+2008-11-24  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * server.c (handle_v_run): Always use the supplied argument list.
+
+2008-11-19  Bob Wilson  <bob.wilson@acm.org>
+       
+       * xtensa-xtregs.c (XTENSA_ELF_XTREG_SIZE): Change to 4.
+       (xtensa_regmap_table): Add entry for scompare1.
+       
+2008-11-18  Thiago Jung Bauermann  <bauerman@br.ibm.com>
+
+       * Makefile.in (powerpc-isa205-32l.o, powerpc-isa205-32l.c,
+       powerpc-isa205-altivec32l.o, powerpc-isa205-altivec32l.c,
+       powerpc-isa205-vsx32l.o, powerpc-isa205-vsx32l.c,
+       powerpc-isa205-64l.o, powerpc-isa205-64l.c,
+       powerpc-isa205-altivec64l.o, powerpc-isa205-altivec64l.c,
+       powerpc-isa205-vsx64l.o, powerpc-isa205-vsx64l.c): New targets.
+       * configure.srv (powerpc*-*-linux*): Add ISA 2.05 object files and
+       XML target descriptions.
+       * linux-ppc-low.c (ppc_arch_setup): Init registers with 64-bit FPSCR
+       when inferior is running on an ISA 2.05 or later processor.  Add
+       special case to return offset for full 64-bit slot of FPSCR when
+       in 32-bits.
+
+2008-11-14  Daniel Gutson  <dgutson@codesourcery.com>
+
+       * Makefile.in (SFILES, clean): Added sparc64 files.
+       (reg-sparc64.o, reg-sparc64.c): New.
+       * configure.srv (sparc*-*-linux*): New configuration.
+       * linux-low.c (regsets_fetch_inferior_registers): Swap ptrace
+       syscall arguments for SPARC.
+       (regsets_store_inferior_registers): Likewise.
+       * linux-sparc-low.c: New file.
+
+2008-10-21  Doug Evans  <dje@google.com>
+
+       * Makefile.in (BFD_DIR,BFD,BFD_SRC,BFD_CFLAGS): Delete.
+       (READLINE_DIR,READLINE_DEP): Delete.
+       (INTERNAL_CFLAGS): Update.
+       (LINTFLAGS): Update.
+
+2008-10-10  Pedro Alves  <pedro@codesourcery.com>
+
+       * server.c (handle_v_run): If GDB didn't specify an argv, use the
+       whole argv from the last run, not just argv[0].
+
 2008-09-08  Pedro Alves  <pedro@codesourcery.com>
 
        * regcache.c (new_register_cache): Return NULL if the register
This page took 0.036169 seconds and 4 git commands to generate.