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. 5db9f0bdb5e676187a13300b26383a01aa0f89dd


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  5db9f0bdb5e676187a13300b26383a01aa0f89dd (commit)
      from  167ad85bf06582759e8dfe021aac9da79b81340d (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=5db9f0bdb5e676187a13300b26383a01aa0f89dd

commit 5db9f0bdb5e676187a13300b26383a01aa0f89dd
Author: Pedro Alves <palves@redhat.com>
Date:   Thu Mar 13 12:02:24 2014 +0000

    Don't mention "Unix" in native target name.
    
    I find the mention of "Unix" unnecessary (and really slightly a lie)
    on GNU/Linux in a couple of places:
    
     (gdb) maint print target-stack
     The current target stack is:
      - multi-thread (multi-threaded child process.)
      - child (Unix child process)
      - exec (Local exec file)
      - None (None)
    
     (gdb) help target child
     Unix child process (started by the "run" command).
    
     (gdb) target child
     Use the "run" command to start a Unix child process.
    
    It's also odd that e.g., the Windows port says "Unix" in reaction to
    "target child" (it was already that way before Windows used
    inf-child.c):
    
     (gdb) target child
     Use the "run" command to start a Unix child process.
     (gdb)
    
    So drop "Unix", going in the direction of saying mostly the same on
    all native targets:
    
      (gdb) maint print target-stack
      The current target stack is:
       - multi-thread (multi-threaded child process.)
     - - child (Unix child process)
     + - child (Child process)
       - exec (Local exec file)
       - None (None)
    
      (gdb) help target child
     - Unix child process (started by the "run" command).
     + Child process (started by the "run" command).
    
     (gdb) target child
     -Use the "run" command to start a Unix child process.
     +Use the "run" command to start a child process.
    
    gdb/
    2014-03-13  Pedro Alves  <palves@redhat.com>
    
    	* inf-child.c (inf_child_open, inf_child_target): Don't mention
    	Unix in user visible strings.
    
    gdb/testsuite/
    2014-03-13  Pedro Alves  <palves@redhat.com>
    
    	* gdb.base/default.exp: Update "target child" and "target procfs"
    	tests to not expect "Unix".

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

Summary of changes:
 gdb/ChangeLog                      |    5 +++++
 gdb/inf-child.c                    |    6 +++---
 gdb/testsuite/ChangeLog            |    5 +++++
 gdb/testsuite/gdb.base/default.exp |    4 ++--
 4 files changed, 15 insertions(+), 5 deletions(-)


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]