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


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  e40adcc9f8ba2dd64fdee98013ee0a98031684ea (commit)
      from  f9c316c4d75be236bbaa8464ef803ed2d3859d6d (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=e40adcc9f8ba2dd64fdee98013ee0a98031684ea

commit e40adcc9f8ba2dd64fdee98013ee0a98031684ea
Author: Pedro Alves <palves@redhat.com>
Date:   Wed Jan 15 16:18:04 2014 +0000

    Fix go32-nat.c build fallout from to_detach constification.
    
    The recent constification of to_detach missed updating the forward
    declaration of go32_detach, breaking the build:
    
     ../../src/gdb/go32-nat.c:387:1: error: conflicting types for 'go32_detach'
     ../../src/gdb/go32-nat.c:240:13: note: previous declaration of 'go32_detach' was here
    
    go32_detach is actually defined before it's ever used, making the
    forward declaration is unnecessary.  So we can just remove it instead
    of updating it.  While at it, remove all others in the same situation.
    Tested by building a djgpp gdb.
    
    gdb/
    2014-01-15  Pedro Alves  <palves@redhat.com>
    
    	* go32-nat.c (go32_open, go32_close, go32_attach, go32_detach)
    	(go32_resume, go32_fetch_registers, store_register)
    	(go32_store_registers, go32_prepare_to_store)
    	(go32_xfer_memory, go32_files_info, go32_kill_inferior)
    	(go32_create_inferior, go32_can_run, go32_terminal_init)
    	(go32_terminal_inferior, go32_terminal_ours): Delete forward
    	declarations.

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

Summary of changes:
 gdb/ChangeLog  |   10 ++++++++++
 gdb/go32-nat.c |   26 +-------------------------
 2 files changed, 11 insertions(+), 25 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]