This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

gdb and binutils branch master updated. 87ce2a04c53fa7bb4fff50a41e45c0b29af06dae


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gdb and binutils".

The branch, master has been updated
       via  87ce2a04c53fa7bb4fff50a41e45c0b29af06dae (commit)
      from  96b961024c796c5a609fd4d6a772b060eb3b6197 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=87ce2a04c53fa7bb4fff50a41e45c0b29af06dae

commit 87ce2a04c53fa7bb4fff50a41e45c0b29af06dae
Author: Doug Evans <dje@google.com>
Date:   Wed Jan 22 14:17:39 2014 -0800

    	New gdbserver option --debug-format=timestamp.
    	* NEWS: Mention it.
    
    	gdbserver/
    	* configure.ac (AC_CHECK_FUNCS): Add test for gettimeofday.
    	* configure: Regenerate.
    	* config.in: Regenerate.
    	* Makefile.in (SFILES): Add debug.c.
    	(OBS): Add debug.o.
    	* debug.c: New file.
    	* debug.h: New file.
    	* linux-aarch64-low.c (*): Update all debugging printfs to use
    	debug_printf instead of fprintf.
    	* linux-arm-low.c (*): Ditto.
    	* linux-cris-low.c (*): Ditto.
    	* linux-crisv32-low.c (*): Ditto.
    	* linux-m32r-low.c (*): Ditto.
    	* linux-sparc-low.c (*): Ditto.
    	* linux-x86.c (*): Ditto.
    	* linux-low.c (*): Ditto.
    	(linux_wait_1): Add calls to debug_enter, debug_exit.
    	(linux_wait): Remove redundant debugging printf.
    	(stop_all_lwps): Add calls to debug_enter, debug_exit.
    	(linux_resume, unstop_all_lwps): Ditto.
    	* mem-break.c (*): Update all debugging printfs to use
    	debug_printf instead of fprintf.
    	* remote-utils.c (*): Ditto.
    	* thread-db.c (*): Ditto.
    	* server.c #include <ctype.h>, "gdb_vecs.h".
    	(debug_threads): Moved to debug.c.
    	(*): Update all debugging printfs to use debug_printf instead of
    	fprintf.
    	(start_inferior): Replace call to fflush with call to debug_flush.
    	(monitor_show_help): Mention set debug-format.
    	(parse_debug_format_options): New function.
    	(handle_monitor_command): Handle "monitor set debug-format".
    	(gdbserver_usage): Mention --debug-format.
    	(main): Parse --debug-format.
    	* server.h (debug_threads): Declaration moved to debug.h.
    	#include "debug.h".
    	* tracepoint.c (trace_debug_1) [!IN_PROCESS_AGENT]: Add version of
    	trace_debug_1 that uses debug_printf.
    	(tracepoint_look_up_symbols): Update all debugging printfs to use
    	debug_printf instead of fprintf.
    
    	doc/
    	* gdb.texinfo (Server): Mention --debug-format=all|none|timestamp.
    	(gdbserver man): Ditto.
    
    	testsuite/
    	* gdb.server/server-mon.exp: Add tests for "set debug-format".

-----------------------------------------------------------------------

Summary of changes:
 gdb/ChangeLog                           |    5 +
 gdb/NEWS                                |    8 +
 gdb/doc/ChangeLog                       |    5 +
 gdb/doc/gdb.texinfo                     |   39 ++
 gdb/gdbserver/ChangeLog                 |   43 +++
 gdb/gdbserver/Makefile.in               |    4 +-
 gdb/gdbserver/config.in                 |    3 +
 gdb/gdbserver/configure                 |    2 +-
 gdb/gdbserver/configure.ac              |    2 +-
 gdb/gdbserver/debug.c                   |   98 ++++++
 gdb/gdbserver/debug.h                   |   55 +++
 gdb/gdbserver/linux-aarch64-low.c       |    2 +-
 gdb/gdbserver/linux-arm-low.c           |    2 +-
 gdb/gdbserver/linux-cris-low.c          |    2 +-
 gdb/gdbserver/linux-crisv32-low.c       |    2 +-
 gdb/gdbserver/linux-low.c               |  579 ++++++++++++++++---------------
 gdb/gdbserver/linux-m32r-low.c          |    2 +-
 gdb/gdbserver/linux-sparc-low.c         |    2 +-
 gdb/gdbserver/linux-x86-low.c           |    4 +-
 gdb/gdbserver/mem-break.c               |   94 +++---
 gdb/gdbserver/remote-utils.c            |    6 +-
 gdb/gdbserver/server.c                  |  159 ++++++++--
 gdb/gdbserver/server.h                  |    2 +-
 gdb/gdbserver/thread-db.c               |   28 +-
 gdb/gdbserver/tracepoint.c              |   17 +-
 gdb/testsuite/ChangeLog                 |    4 +
 gdb/testsuite/gdb.server/server-mon.exp |    4 +
 27 files changed, 792 insertions(+), 381 deletions(-)
 create mode 100644 gdb/gdbserver/debug.c
 create mode 100644 gdb/gdbserver/debug.h


hooks/post-receive
-- 
gdb and binutils


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]