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. 125f8a3ddedd413a2290dae011f0bed9ffc78278


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  125f8a3ddedd413a2290dae011f0bed9ffc78278 (commit)
      from  42995dbda646ff0291a36f83a7f1a9f45e3fda8a (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=125f8a3ddedd413a2290dae011f0bed9ffc78278

commit 125f8a3ddedd413a2290dae011f0bed9ffc78278
Author: Gary Benson <gbenson@redhat.com>
Date:   Thu Jun 19 14:46:38 2014 +0100

    Move shared native target specific code to gdb/nat
    
    https://sourceware.org/gdb/wiki/Common describes the following
    directory structure:
    
     gdb/nat/
       Native target backend files. Code that interfaces with the
       host debug API. E.g., ptrace code, Windows debug API code,
       procfs code should go here.
    
     gdb/target/
       Host-independent, target vector specific code (target_ops).
    
     gdb/common/
       All other shared code.
    
    This commit moves all native target backend files currently in
    gdb/common to gdb/nat.
    
    gdb/
    2014-06-20  Gary Benson  <gbenson@redhat.com>
    
    	* common/gdb_thread_db.h: Moved to nat.  All includes updated.
    	* common/glibc_thread_db.h: Likewise.
    	* common/i386-cpuid.h: Likewise.
    	* common/i386-gcc-cpuid.h: Likewise.
    	* common/linux-btrace.h: Likewise.
    	* common/linux-osdata.h: Likewise.
    	* common/linux-procfs.h: Likewise.
    	* common/linux-ptrace.h: Likewise.
    	* common/mips-linux-watch.h: Likewise.
    	* common/linux-btrace.c: Moved to nat.
    	* common/linux-osdata.c: Likewise.
    	* common/linux-procfs.c: Likewise.
    	* common/linux-ptrace.c: Likewise.
    	* common/mips-linux-watch.c: Likewise.
    	* nat/gdb_thread_db.h: Moved from common.
    	* nat/glibc_thread_db.h: Likewise.
    	* nat/i386-cpuid.h: Likewise.
    	* nat/i386-gcc-cpuid.h: Likewise.
    	* nat/linux-btrace.c: Likewise.
    	* nat/linux-btrace.h: Likewise.
    	* nat/linux-osdata.c: Likewise.
    	* nat/linux-osdata.h: Likewise.
    	* nat/linux-procfs.c: Likewise.
    	* nat/linux-procfs.h: Likewise.
    	* nat/linux-ptrace.c: Likewise.
    	* nat/linux-ptrace.h: Likewise.
    	* nat/mips-linux-watch.c: Likewise.
    	* nat/mips-linux-watch.h: Likewise.
    	* Makefile.in (HFILES_NO_SRCDIR): Reflect new locations.
    	(object file files): Reordered.
    	* gdb/copyright.py (EXCLUDE_LIST): Reflect new location
    	of glibc_thread_db.h.
    
    gdb/gdbserver/
    2014-06-20  Gary Benson  <gbenson@redhat.com>
    
    	* Makefile.in (SFILES): Update locations for files moved
    	from common to nat.
    	(object file files): Reordered.
    
    gdb/testsuite/
    2014-06-20  Gary Benson  <gbenson@redhat.com>
    
    	* gdb.arch/i386-avx.exp: Fix include file location.
    	* gdb.arch/i386-sse.exp: Likewise.

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

Summary of changes:
 gdb/ChangeLog                          |   35 ++++++++++++++++++++++
 gdb/Makefile.in                        |   50 ++++++++++++++++----------------
 gdb/amd64-linux-nat.c                  |    2 +-
 gdb/copyright.py                       |    2 +-
 gdb/gdbserver/ChangeLog                |    6 ++++
 gdb/gdbserver/Makefile.in              |   37 +++++++++++-------------
 gdb/gdbserver/linux-low.c              |    8 ++--
 gdb/gdbserver/linux-low.h              |    4 +-
 gdb/gdbserver/linux-mips-low.c         |    2 +-
 gdb/gdbserver/thread-db.c              |    2 +-
 gdb/go32-nat.c                         |    2 +-
 gdb/i386-linux-nat.c                   |    2 +-
 gdb/linux-nat.c                        |    6 ++--
 gdb/linux-thread-db.c                  |    6 ++--
 gdb/mips-linux-nat.c                   |    2 +-
 gdb/{common => nat}/gdb_thread_db.h    |    0
 gdb/{common => nat}/glibc_thread_db.h  |    0
 gdb/{common => nat}/i386-cpuid.h       |    0
 gdb/nat/i386-dregs.c                   |    2 +-
 gdb/{common => nat}/i386-gcc-cpuid.h   |    0
 gdb/{common => nat}/linux-btrace.c     |    0
 gdb/{common => nat}/linux-btrace.h     |    0
 gdb/{common => nat}/linux-osdata.c     |    0
 gdb/{common => nat}/linux-osdata.h     |    0
 gdb/{common => nat}/linux-procfs.c     |    0
 gdb/{common => nat}/linux-procfs.h     |    0
 gdb/{common => nat}/linux-ptrace.c     |    2 +-
 gdb/{common => nat}/linux-ptrace.h     |    0
 gdb/nat/linux-waitpid.c                |    4 +-
 gdb/{common => nat}/mips-linux-watch.c |    0
 gdb/{common => nat}/mips-linux-watch.h |    0
 gdb/testsuite/ChangeLog                |    5 +++
 gdb/testsuite/gdb.arch/i386-avx.c      |    2 +-
 gdb/testsuite/gdb.arch/i386-avx.exp    |    2 +-
 gdb/testsuite/gdb.arch/i386-avx512.c   |    2 +-
 gdb/testsuite/gdb.arch/i386-mpx.c      |    2 +-
 gdb/testsuite/gdb.arch/i386-sse.c      |    2 +-
 gdb/testsuite/gdb.arch/i386-sse.exp    |    2 +-
 38 files changed, 117 insertions(+), 74 deletions(-)
 rename gdb/{common => nat}/gdb_thread_db.h (100%)
 rename gdb/{common => nat}/glibc_thread_db.h (100%)
 rename gdb/{common => nat}/i386-cpuid.h (100%)
 rename gdb/{common => nat}/i386-gcc-cpuid.h (100%)
 rename gdb/{common => nat}/linux-btrace.c (100%)
 rename gdb/{common => nat}/linux-btrace.h (100%)
 rename gdb/{common => nat}/linux-osdata.c (100%)
 rename gdb/{common => nat}/linux-osdata.h (100%)
 rename gdb/{common => nat}/linux-procfs.c (100%)
 rename gdb/{common => nat}/linux-procfs.h (100%)
 rename gdb/{common => nat}/linux-ptrace.c (99%)
 rename gdb/{common => nat}/linux-ptrace.h (100%)
 rename gdb/{common => nat}/mips-linux-watch.c (100%)
 rename gdb/{common => nat}/mips-linux-watch.h (100%)


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]