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. 45741a9c329a5afa111f7842ba980bd6a106e020


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  45741a9c329a5afa111f7842ba980bd6a106e020 (commit)
      from  98eb56a4bc8a0d3c58ba6f616d6e9238377ecce5 (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=45741a9c329a5afa111f7842ba980bd6a106e020

commit 45741a9c329a5afa111f7842ba980bd6a106e020
Author: Pedro Alves <palves@redhat.com>
Date:   Thu May 22 12:29:11 2014 +0100

    Add new infrun.h header.
    
    Move infrun.c declarations out of inferior.h to a new infrun.h file.
    
    Tested by building on:
    
     i686-w64-mingw32, enable-targets=all
     x86_64-linux, enable-targets=all
     i586-pc-msdosdjgpp
    
    And also grepped the whole tree for each symbol moved to find where
    infrun.h might be necessary.
    
    gdb/
    2014-05-22  Pedro Alves  <palves@redhat.com>
    
    	* inferior.h (debug_infrun, debug_displaced, stop_on_solib_events)
    	(sync_execution, sched_multi, step_stop_if_no_debug, non_stop)
    	(disable_randomization, enum exec_direction_kind)
    	(execution_direction, stop_registers, start_remote)
    	(clear_proceed_status, proceed, resume, user_visible_resume_ptid)
    	(wait_for_inferior, normal_stop, get_last_target_status)
    	(prepare_for_detach, fetch_inferior_event, init_wait_for_inferior)
    	(insert_step_resume_breakpoint_at_sal)
    	(follow_inferior_reset_breakpoints, stepping_past_instruction_at)
    	(set_step_info, print_stop_event, signal_stop_state)
    	(signal_print_state, signal_pass_state, signal_stop_update)
    	(signal_print_update, signal_pass_update)
    	(update_signals_program_target, clear_exit_convenience_vars)
    	(displaced_step_dump_bytes, update_observer_mode)
    	(signal_catch_update, gdb_signal_from_command): Move
    	declarations ...
    	* infrun.h: ... to this new file.
    	* amd64-tdep.c: Include infrun.h.
    	* annotate.c: Include infrun.h.
    	* arch-utils.c: Include infrun.h.
    	* arm-linux-tdep.c: Include infrun.h.
    	* arm-tdep.c: Include infrun.h.
    	* break-catch-sig.c: Include infrun.h.
    	* breakpoint.c: Include infrun.h.
    	* common/agent.c: Include infrun.h instead of inferior.h.
    	* corelow.c: Include infrun.h.
    	* event-top.c: Include infrun.h.
    	* go32-nat.c: Include infrun.h.
    	* i386-tdep.c: Include infrun.h.
    	* inf-loop.c: Include infrun.h.
    	* infcall.c: Include infrun.h.
    	* infcmd.c: Include infrun.h.
    	* infrun.c: Include infrun.h.
    	* linux-fork.c: Include infrun.h.
    	* linux-nat.c: Include infrun.h.
    	* linux-thread-db.c: Include infrun.h.
    	* monitor.c: Include infrun.h.
    	* nto-tdep.c: Include infrun.h.
    	* procfs.c: Include infrun.h.
    	* record-btrace.c: Include infrun.h.
    	* record-full.c: Include infrun.h.
    	* remote-m32r-sdi.c: Include infrun.h.
    	* remote-mips.c: Include infrun.h.
    	* remote-notif.c: Include infrun.h.
    	* remote-sim.c: Include infrun.h.
    	* remote.c: Include infrun.h.
    	* reverse.c: Include infrun.h.
    	* rs6000-tdep.c: Include infrun.h.
    	* s390-linux-tdep.c: Include infrun.h.
    	* solib-irix.c: Include infrun.h.
    	* solib-osf.c: Include infrun.h.
    	* solib-svr4.c: Include infrun.h.
    	* target.c: Include infrun.h.
    	* top.c: Include infrun.h.
    	* windows-nat.c: Include infrun.h.
    	* mi/mi-interp.c: Include infrun.h.
    	* mi/mi-main.c: Include infrun.h.
    	* python/py-threadevent.c: Include infrun.h.

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

Summary of changes:
 gdb/ChangeLog               |   61 ++++++++++++++++
 gdb/amd64-tdep.c            |    1 +
 gdb/annotate.c              |    1 +
 gdb/arch-utils.c            |    1 +
 gdb/arm-linux-tdep.c        |    1 +
 gdb/arm-tdep.c              |    1 +
 gdb/break-catch-sig.c       |    1 +
 gdb/breakpoint.c            |    1 +
 gdb/common/agent.c          |    2 +-
 gdb/corelow.c               |    1 +
 gdb/event-top.c             |    1 +
 gdb/go32-nat.c              |    1 +
 gdb/i386-tdep.c             |    1 +
 gdb/inf-loop.c              |    3 +-
 gdb/infcall.c               |    1 +
 gdb/infcmd.c                |    1 +
 gdb/inferior.h              |  134 -----------------------------------
 gdb/infrun.c                |    1 +
 gdb/infrun.h                |  164 +++++++++++++++++++++++++++++++++++++++++++
 gdb/linux-fork.c            |    1 +
 gdb/linux-nat.c             |    1 +
 gdb/linux-thread-db.c       |    1 +
 gdb/mi/mi-interp.c          |    1 +
 gdb/mi/mi-main.c            |    1 +
 gdb/monitor.c               |    1 +
 gdb/nto-tdep.c              |    1 +
 gdb/procfs.c                |    1 +
 gdb/python/py-threadevent.c |    1 +
 gdb/record-btrace.c         |    1 +
 gdb/record-full.c           |    1 +
 gdb/remote-m32r-sdi.c       |    1 +
 gdb/remote-mips.c           |    1 +
 gdb/remote-notif.c          |    1 +
 gdb/remote-sim.c            |    1 +
 gdb/remote.c                |    1 +
 gdb/reverse.c               |    1 +
 gdb/rs6000-tdep.c           |    1 +
 gdb/s390-linux-tdep.c       |    1 +
 gdb/solib-irix.c            |    1 +
 gdb/solib-osf.c             |    1 +
 gdb/solib-svr4.c            |    1 +
 gdb/target.c                |    1 +
 gdb/top.c                   |    1 +
 gdb/windows-nat.c           |    1 +
 44 files changed, 267 insertions(+), 136 deletions(-)
 create mode 100644 gdb/infrun.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]