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. c26e9cbb0ce70e8fca32a40c434a0837bf46750a


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  c26e9cbb0ce70e8fca32a40c434a0837bf46750a (commit)
       via  0cc6f43dae73e5805f470fc823c3e503b8cdbffe (commit)
       via  eec03155c293e340850c25d1aa5fdd8e7a666776 (commit)
       via  f04a82ef62e9f32502772f64d2eac478b96ef566 (commit)
       via  d57dda0ab3da976aeedce4a5c792a584d3fb9ec0 (commit)
       via  3aa8c9698a0e604eab7a1e913b09b6506ce00c4c (commit)
      from  94123b4f917eb03353fa46a43ea1fd7c37f3fb55 (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=c26e9cbb0ce70e8fca32a40c434a0837bf46750a

commit c26e9cbb0ce70e8fca32a40c434a0837bf46750a
Author: Yao Qi <yao@codesourcery.com>
Date:   Sun Jan 5 19:32:51 2014 +0800

    Remove an empty-body 'if' statement
    
    This patch removes the if statement and the comments together.
    
    gdb:
    
    2014-01-07  Yao Qi  <yao@codesourcery.com>
    
    	* gnu-nat.c (set_exceptions_cmd): Remove an empty body 'if'
    	statement.

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=0cc6f43dae73e5805f470fc823c3e503b8cdbffe

commit 0cc6f43dae73e5805f470fc823c3e503b8cdbffe
Author: Yao Qi <yao@codesourcery.com>
Date:   Sun Jan 5 19:36:51 2014 +0800

    Add qualifier 'const' to argument args
    
    This patch fixes the following error.
    
    ../../../git/gdb/gnu-nat.c: In function 'info_port_rights':
    ../../../git/gdb/gnu-nat.c:3083:11: error: passing argument 1 of 'parse_to_comma_and_eval' from incompatible pointer type [-Werror]
    In file included from ../../../git/gdb/breakpoint.h:23:0,
                     from ../../../git/gdb/inferior.h:37,
                     from ../../../git/gdb/gnu-nat.c:55:
    ../../../git/gdb/value.h:763:22: note: expected 'const char **' but argument is of type 'char **'
    
    gdb:
    
    2014-01-07  Yao Qi  <yao@codesourcery.com>
    
    	* gnu-nat.c (info_port_rights): Add qualifier const to
    	argument args.

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

commit eec03155c293e340850c25d1aa5fdd8e7a666776
Author: Yao Qi <yao@codesourcery.com>
Date:   Sun Jan 5 19:37:53 2014 +0800

    Use void for empty argument list in trace_me
    
    This patch fixes the following error:
    
    ../../../git/gdb/gnu-nat.c: In function 'trace_me':
    ../../../git/gdb/gnu-nat.c:2106:8: error: old-style function definition [-Werror=old-style-definition]
    
    gdb:
    
    2014-01-07  Yao Qi  <yao@codesourcery.com>
    
    	* gnu-nat.c (trace_me): Use 'void' for empty argument list.

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

commit f04a82ef62e9f32502772f64d2eac478b96ef566
Author: Yao Qi <yao@codesourcery.com>
Date:   Sun Jan 5 19:36:03 2014 +0800

    Make functions static.
    
    gdb:
    
    2014-01-07  Yao Qi  <yao@codesourcery.com>
    
    	* gnu-nat.c (make_inf) Update declaration.
    	(make_inf): Make it static.
    	(inf_set_traced): Likewise.
    	(inf_port_to_thread, inf_task_died_status): Likewise.

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

commit d57dda0ab3da976aeedce4a5c792a584d3fb9ec0
Author: Yao Qi <yao@codesourcery.com>
Date:   Sun Jan 5 15:38:44 2014 +0800

    Remove declaration of inf_tid_to_proc
    
    inf_tid_to_proc is not defined at all.  This patch is to remove its
    declaration.
    gdb:
    
    2014-01-07  Yao Qi  <yao@codesourcery.com>
    
    	* gnu-nat.c (inf_tid_to_proc): Remove declaration.

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=3aa8c9698a0e604eab7a1e913b09b6506ce00c4c

commit 3aa8c9698a0e604eab7a1e913b09b6506ce00c4c
Author: Yao Qi <yao@codesourcery.com>
Date:   Sun Jan 5 15:05:44 2014 +0800

    Fix no previous prototype for '_initialize_gnu_nat' [-Werror=missing-prototypes]
    
    This patch fixes this error below by declaring _initialize_gnu_nat.
    
    ../../../git/gdb/gnu-nat.c:3447:1: error: no previous prototype for '_initialize_gnu_nat' [-Werror=missing-prototypes]
    
    gdb:
    
    2014-01-07  Yao Qi  <yao@codesourcery.com>
    
    	* gnu-nat.c (_initialize_gnu_nat): Declare.

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

Summary of changes:
 gdb/ChangeLog |   29 +++++++++++++++++++++++++++++
 gdb/gnu-nat.c |   24 +++++++++++++-----------
 2 files changed, 42 insertions(+), 11 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]