2008-07-12 Pedro Alves <pedro@codesourcery.com>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
index bb7fd135440b78a3e2b2789bb93275047c6301f5..1d1f839dfac90457ae82ef7f3c322396a7b22570 100644 (file)
+2008-07-12  Pedro Alves  <pedro@codesourcery.com>
+
+       * infrun.c (struct thread_stepping_state): Delete sal member.
+       (init_thread_stepping_state): Add local sal.  Use it instead of
+       tss->sal.
+       (handle_inferior_event): New local stop_pc_sal.  Use it instead of
+       tss->sal.
+       (step_into_function): Add local stop_func_sal.  Use it instead of
+       tss->sal.
+
+2008-07-12  Vladimir Prus  <vladimir@codesourcery.com>
+
+       Implement -exec-continue/-exec-interrupt --all.
+        * infcmd.c (continue_1): New, extracted from
+        (continue_command): ...here.
+        (interrupt_target_1): New, extracted from
+        (interrupt_target_command): ...here.
+        * inferior.h (continue_1, interrupt_target_1): New.
+        * mi/mi-main.c (mi_cmd_exec_continue)
+        (mi_cmd_exec_interrupt): Handle --all.
+
+2008-07-12  Vladimir Prus  <vladimir@codesourcery.com>
+
+       Implement --thread and --frame.
+       * gdbthread.h (find_thread_id): Declare.
+        * thread.c (find_thread_id): Make non-static.
+        * mi/mi-main.c (mi_cmd_execute): Switch to the right
+        thread and frame, if necessary.
+        * mi/mi-parse.c (mi_parse): Handle --thread and --frame.
+        * mi/mi-parse.h (strcut mi_parse): New fields thread and frame.
+
+2008-07-12  Vladimir Prus  <vladimir@codesourcery.com>
+
+       * infrun.c (resume): Discard cleanups on early exit path.
+
+2008-07-12  Vladimir Prus  <vladimir@codesourcery.com>
+
+        * infrun.c (normal_stop): For MI, report which threads
+       were stopped.
+
+2008-07-12  Vladimir Prus  <vladimir@codesourcery.com>
+
+       Report thread state in -thread-info output.
+        * thread.c (print_thread_info): Add new field "state".
+
+2008-07-11  Pedro Alves  <pedro@codesourcery.com>
+
+       * infrun.c (handle_inferior_event): Also ignore a
+       TARGET_SIGNAL_TRAP on a STOP_QUIETLY_NO_SIGSTOP.
+
+2008-07-11  Tom Tromey  <tromey@redhat.com>
+
+       * completer.c (complete_line_internal): New function, from
+       complete_line.  Add 'for_help' parameter.
+       (complete_line): Use it.
+       (command_completer): Move later.  Rewrite.
+
+2008-07-11  Pedro Alves  <pedro@codesourcery.com>
+
+       * thread.c (thread_apply_command): Move making the cleanup out of
+       the loop.
+
+2008-07-11  Pedro Alves  <pedro@codesourcery.com>
+
+       Exited threads.
+
+       * thread.c (enum thread_state): New.
+       (thread_state main_thread_running): Delete, in favor of...
+       (thread_state main_thread_state): ... this.  Update throughout.
+       (clear_thread_inferior_resources): New, split from free_thread.
+       (free_thread): Call clear_thread_inferior_resources.
+       (init_thread_list): Set main thread to stopped state.
+       (add_thread_silent): Take care of PTID reuses.
+       (delete_thread): If deleting inferior_ptid or a thread with
+       refcount > 0, mark it as exited, but still keep it in the list.
+       Only notify of thread exits, if we haven't done so yet.
+       (iterate_over_threads): Make it safe to delete threads while
+       iterating over them.
+       (do_captured_list_thread_ids): Don't account for exited threads.
+       (thread_alive): Check for the THREAD_EXITED state, and don't set
+       ptid to -1 on exited threads.
+       (set_running): Update to account for extra possible states.
+       (is_thread_state): New.
+       (is_stopped, is_exited): New.
+       (is_running): Implement in terms of is_thread_state.
+       (any_running): Update.
+       (print_thread_info): Update.  Account for exited threads.  Don't
+       warn about missed frame restoring here, its done in the cleanup.
+       (switch_to_thread): Don't read from a thread that has gone.
+       (restore_current_thread): In non-stop mode, do a full context
+       switch.
+       (restore_selected_frame): Add a frame_level argument.  Rewrite.
+       (struct current_thread_cleanup): Add selected_frame_level and
+       was_stopped members.
+       (do_restore_current_thread_cleanup): Check if thread was stopped
+       and still is, and if the target has registers, stack and memory
+       before restoring the selected frame.  Don't delete the cleanup
+       argument here.
+       (restore_current_thread_cleanup_dtor): New.
+       (make_cleanup_restore_current_thread): Remove all arguments.
+       Rewrite.
+       (thread_apply_all_command): Update.  Prune threads.
+       (thread_apply_command): Update.
+       (thread_command): Account for currently selected exited thread.
+       (do_captured_thread_select): Check for a running thread.  Prune
+       threads.
+       (_initialize_thread): Make "info threads", "thread", "thread
+       apply", and "thread apply all" appliable without a selected thread.
+       * gdbthread.h (struct thread_info): Replace running_ by state_.
+       Add refcount.
+       (is_exited, is_stopped): Declare.
+       (make_cleanup_restore_current_thread): Remove all arguments.
+       * infrun.c: Include "event-top.h".
+       (fetch_inferior_event): In non-stop mode, restore selected thread
+       and frame after handling the event and running breakpoint
+       commands.  Display GDB prompt if needed.
+       (normal_stop): In non-stop mode, don't print thread switching
+       notice.
+       * cli/cli-decode.c (set_cmd_no_selected_thread_ok)
+       (get_cmd_no_selected_thread_ok): New.
+       * cli/cli-decode.h (CMD_NO_SELECTED_THREAD_OK): New.
+       (set_cmd_no_selected_thread_ok, get_cmd_no_selected_thread_ok):
+       Declare.
+       * cli/cli-cmds.c: Set "pwd", "help", "info", "show" as
+       no-selected-thread ok.
+       * top.c (execute_command): Check for non no-selected-thread-ok
+       commands.
+       * linux-nat.c (struct saved_ptids, threads_to_delete)
+       (record_dead_thread, prune_lwps): Delete.
+       (exit_lwp): Unconditionally delete thread.
+       (linux_nat_resume): Remove prune_lwps call.
+       * infcmd.c (proceed_thread_callback): Check if !is_stopped instead
+       of is_running.  Adjust to make_cleanup_restore_current_thread
+       interface change.
+       * mi/mi-main.c (mi_cmd_execute): Only allow a few commands if the
+       selected thread has exited.
+       * inf-loop.c (inferior_event_handler): Don't display the prompt
+       here.
+       * varobj.c (c_value_of_root): Update.
+       * defs.h (make_cleanup_dtor): Declare.
+       * utils.c (make_cleanup_dtor): New.
+
+       * Makefile.in (infrun.o): Depend on $(event_top_h).
+
+2008-07-11  Pedro Alves  <pedro@codesourcery.com>
+
+       Add "continue -a" and "interrupt -a" options for non-stop mode.
+
+       * infcmd.c (proceed_thread_callback, do_context_switch_to): New.
+       (continue_command): Add "-a" option.
+       (interrupt_target_command): Add "-a" option.
+       (_initialize_infcmd): Add extend help of continue and interrupt
+       command to mention the new "-a" option.  Mark "continue" async ok.
+
+2008-07-10  Doug Evans  <dje@google.com>
+
+       Add "set print symbol-loading on|off".
+       * NEWS: Document new option.
+       * symfile.h (print_symbol_loading): Declare.
+       * symfile.c (print_symbol_loading): New global.
+       (symbol_file_add_with_addrs_or_offsets): Only print "Reading symbols
+       from ..." if print_symbol_loading.
+       (_initialize_symfile): Add set/show print symbol-loading.
+       * solib.c (solib_read_symbols): Only print "Loaded symbols for ..."
+       if print_symbol_loading.
+
+2008-07-10  Pedro Alves  <pedro@codesourcery.com>
+
+       Non-stop linux native.
+
+       * linux-nat.c (linux_test_for_tracefork): Block events while we're
+       here.
+       (get_pending_status): Implement non-stop mode.
+       (linux_nat_detach): Stop threads before detaching.
+       (linux_nat_resume): In non-stop mode, always resume only a single
+       PTID.
+       (linux_handle_extended_wait): On a clone event, in non-stop mode,
+       add new lwp to GDB's thread table, and mark as running, executing
+       and stopped appropriately.
+       (linux_nat_filter_event): Don't assume there are other running
+       threads when a thread exits.
+       (linux_nat_wait): Mark the main thread as running and executing.
+       In non-stop mode, don't stop all lwps.
+       (linux_nat_kill): Stop lwps before killing them.
+       (linux_nat_thread_alive): Use signal 0 to detect if a thread is
+       alive.
+       (send_sigint_callback): New.
+       (linux_nat_stop): New.
+       (linux_nat_add_target): Set to_stop to linux_nat_stop.
+
+       * linux-nat.h (thread_db_attach_lwp): Declare.
+
+       * linux-thread-db.c (thread_get_info_callback): Check for new
+       threads if we have none.
+       (thread_from_lwp, enable_thread_event): Set proc_handle.pid to the
+       stopped lwp.  Check for new threads if we have none.
+       (thread_db_attach_lwp): New.
+       (thread_db_init): Set proc_handle.pid to inferior_ptid.
+       (check_event): Set proc_handle.pid to the stopped lwp.
+       (thread_db_find_new_threads): Set proc_handle.pid to any stopped
+       lwp available, bail out if there is none.
+
+       * linux-fork.c (linux_fork_killall): Use SIGKILL instead of
+       PTRACE_KILL.
+
+2008-07-10  Kevin Buettner  <kevinb@redhat.com>
+
+       * rs6000-tdep.c (ppc_displaced_step_fixup): Change type of
+       `current_pc' from CORE_ADDR to ULONGEST.
+
+       * remote-sim.c (gdbsim_cntrl_c): Pass remote_sim_ptid to
+       gdbsim_stop().
+
+2008-07-10  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * NEWS (New commands): Mention "set disable-randomization".
+       * configure.ac: Add check for HAVE_PERSONALITY and
+       HAVE_DECL_ADDR_NO_RANDOMIZE.
+       * configure, config.in: Regenerate.
+       * linux-nat.c [HAVE_PERSONALITY]: New include <sys/personality.h>.
+       [HAVE_PERSONALITY] [!HAVE_DECL_ADDR_NO_RANDOMIZE]: Set
+       ADDR_NO_RANDOMIZE.
+       (disable_randomization, show_disable_randomization)
+       (set_disable_randomization): New.
+       (linux_nat_create_inferior) [HAVE_PERSONALITY]: New variables
+       PERSONALITY_ORIG and PERSONALITY_SET.  Disable randomization upon the
+       variable DISABLE_RANDOMIZATION.
+       (_initialize_linux_nat): Call ADD_SETSHOW_BOOLEAN_CMD for the variable
+       DISABLE_RANDOMIZATION.
+
+2008-07-09  Pedro Alves  <pedro@codesourcery.com>
+
+       Adjust all targets to new target_stop interface.
+
+       * gnu-nat.c (gnu_stop): Add ptid argument.
+       * go32-nat.c (go32_stop): Add ptid argument.
+       (go32_create_inferior): Pass inferior_ptid to go32_stop.
+       * hpux-thread.c (hpux_thread_stop): Add ptid argument.
+       * monitor.c (monitor_stop): Add ptid argument.
+       (monitor_open): Pass inferior_ptid to monitor_stop.
+       (monitor_interrupt): Pass inferior_ptid to target_stop.
+       (monitor_stop): Add ptid argument.
+       * nto-procfs.c (nto_interrupt): Pass inferior_ptid to target_stop.
+       (procfs_create_inferior): Add ptid argument.
+       * procfs.c (procfs_stop): Add ptid argument.
+       * remote-m32r-sdi.c (m32r_stop): Add ptid argument.
+       * remote-sim.c (gdbsim_stop): Add ptid argument.
+       * sol-thread.c (sol_thread_stop): Add ptid argument.
+       * win32-nat.c (win32_stop): Add ptid argument.
+
+2008-07-09  Pedro Alves  <pedro@codesourcery.com>
+
+       Non-stop inferior control.
+
+       * infrun.c (resume): In non-stop mode, always resume just one
+       thread.
+       (proceed): Don't call prepare_to_proceed in non-stop mode.
+       (fetch_inferior_event): In non-stop mode, switch context before
+       handling the event.
+       (error_is_running, ensure_not_running): New.
+       (handle_inferior_event): In non-stop mode: Mark only the event
+       thread as stopped.  Require that the target module manages adding
+       threads to the thread list.  Assert that there isn't a
+       deferred_step_ptid set.  Don't switch to infwait_thread_hop_state.
+       (normal_stop): Only mark not-running if inferior hasn't exited.
+       In non-stop mode, only mark the event thread.
+
+       * thread.c:Include "cli/cli-decode.h".
+       (print_thread_info): Don't read from a running thread.
+       Output "(running)" if thread is running.
+       (switch_to_thread): Don't read stop_pc if thread is executing.
+       (do_restore_current_thread_cleanup): Don't write to a running
+       thread.
+       (thread_apply_all_command): Don't read from a running thread.  In
+       non-stop mode, do a full context-switch instead of just switching
+       threads.
+       (thread_apply_command): In non-stop mode, do a full context-switch
+       instead of just switching threads.
+       (do_captured_thread_select): Likewise.  Inform user if selected
+       thread is running.
+       (_initialize_thread): Mark "info threads" and "thread" and
+       async_ok.
+
+       * inf-loop.c (inferior_event_handler): In non-stop mode, don't
+       unregister the target from the event loop.
+
+       * infcmd.c (continue_command, step_1, jump_command)
+       (signal_command): Ensure the selected thread isn't running.
+       (interrupt_target_command): In non-stop mode, interrupt only the
+       selected thread.
+
+       * inferior.h (error_is_running, ensure_not_running): Declare.
+
+       * target.h (struct target_ops): Add ptid argument to the to_stop
+       member.
+       (target_stop): Add ptid_t argument.
+
+       * target.c (update_current_target): Add ptid argument to to_stop's
+       type.
+       (debug_to_stop): Add ptid_t argument.
+       (debug_to_rcmd): Set to_stop_ptid.
+
+       * remote.c (remote_stop): Add ptid_t argument.
+       (async_remote_interrupt): Add inferior_ptid to target_stop.
+       * inf-ptrace.c (inf_ptrace_stop): Add ptid argument.
+
+       * Makefile.in (thread.o): Depend on $(cli_decode_h).
+
+2008-07-09  Pedro Alves  <pedro@codesourcery.com>
+
+       Don't rely on ecs->wait_for_more.
+
+       * infrun.c (proceed): Clear the stepping state, set
+       previous_inferior_ptid and clear infwait state.
+       (wait_for_inferior): Don't clear the stepping state, set
+       previous_inferior_ptid, or clear the infwait state here.
+       (fetch_inferior_event): Don't clear the stepping state, set
+       previous_inferior_ptid, or clear the infwait state here.  Don't
+       condition on wait_for_more.
+
+2008-07-09  Pedro Alves  <pedro@codesourcery.com>
+
+       Refactor infrun a bit.
+
+       * infrun.c (currently_stepping): Take a struct
+       thread_stepping_state instead of an execution_control_state.
+       (struct thread_stepping_state): New, split from
+       execution_control_state.
+       (gtss, tss): New globals.
+       (proceed): Clear the stepping state, set previous_inferior_ptid
+       and clear infwait state.
+       (init_wait_for_inferior): Clear the stepping state,
+       previous_inferior_ptid and infwait state.
+       (waiton_ptid, infwait_state): New, split from
+       execution_control_state.
+       (struct execution_control_state): Members that persist through
+       events moved out to either struct thred_stepping_state or made
+       global.  Deleted unneeded wp, saved_inferior_ptid, tmpstatus.
+       (wait_for_inferior, fetch_inferior_event): Use local
+       execution_control_state.  Update to execution_control_state split.
+       (init_execution_control_state): Adjust.
+       (init_thread_stepping_state): New, extracted from
+       init_execution_control_state.
+       (context_switch): Take a ptid instead of an
+       execution_control_state.
+       (context_switch_to): Adjust.
+       (adjust_pc_after_break): Adjust.
+       (init_infwait_state): New.
+       (handle_inferior_event): Adjust.
+
+2008-07-09  Pedro Alves  <pedro@codesourcery.com>
+           Vladimir Prus  <vladimir@codesourcery.com>
+
+       Per-thread commands.
+
+       * gdbthread.h: Remove unneeded forward declarations.
+       Include "inferior.h".
+       (struct thread_info): Add continuations,
+       intermediate_continuations, proceed_to_finish, step_over_calls,
+       stop_step, step_multi and stop_signal members.
+       (save_infrun_state): Add continuations,
+       intermediate_continuations, proceed_to_finish, step_over_calls,
+       stop_step, step_multi, stop_signal and stop_bpstat parameters.
+       (load_infrun_state): Add continuations,
+       intermediate_continuations, proceed_to_finish, step_over_calls,
+       stop_step, step_multi, stop_signal and stop_bpstat parameters.
+
+       * thread.c (load_infrun_state): In non-stop mode, load
+       continuations, intermediate_continuations, proceed_to_finish,
+       step_over_calls, stop_step, step_multi and stop_signal.
+       (save_infrun_state): Store continuations,
+       intermediate_continuations, proceed_to_finish, step_over_calls,
+       stop_step, step_multi, stop_signal and stop_bpstat.
+       (save_infrun_state): Store continuations,
+       intermediate_continuations, proceed_to_finish, step_over_calls,
+       stop_step, step_multi, stop_signal and stop_bpstat.
+       (free_thread): Clear The thread's stop_bpstat.
+
+       * inferior.h (context_switch_to): Declare.
+
+       * infrun.c (ecss): New global.
+       (context_switch): Context switch continuations,
+       intermediate_continuations, proceed_to_finish, step_over_calls,
+       stop_step, step_multi, stop_signal and stop_bpstat.
+       (wait_for_inferior): Use global ecss.
+       (async_ecss, async_ecs): Delete.
+       (fetch_inferior_event): Use global ecss.
+       (context_switch_to): New.
+
+       * top.c (execute_command): In non-stop, only check if the current
+       thread is running, in all-stop, check if there's any thread
+       running.
+
+       * breakpoint.c (bpstat_remove_breakpoint): New.
+       (bpstat_remove_breakpoint_callback): New.
+       (delete_breakpoint): Clear the stop_bpstats of all threads.
+
+       * mi/mi-main.c (mi_cmd_execute): In non-stop, only check if the
+       current thread is running, in all-stop, check if there's any
+       thread running.
+
+       * Makefile.in (gdbthread_h): Depend on $(inferior_h).
+
+2008-07-09  Pedro Alves  <pedro@codesourcery.com>
+
+       Add non_stop global.
+
+       * inferior.h (non_stop): Declare.
+       * infrun.c (non_stop, non_stop_1): New.
+       (set_non_stop, show_non_stop): New.
+       (_initialize_infrun): Add "set/show non-stop" command.
+
+2008-07-09  Pedro Alves  <pedro@codesourcery.com>
+
+       Adjust fork/vfork/exec to pass ptids around.
+
+       * target.h (struct target_waitstatus): Store related_pid as a ptid.
+       (inferior_has_forked, inferior_has_vforked, inferior_has_execd):
+       Take a ptid_t.
+       * breakpoint.h (struct breakpoint): Change forked_inferior_pid
+       type to ptid.
+       * breakpoint.c (print_it_typical, bpstat_check_location)
+       (print_one_breakpoint_location, set_raw_breakpoint_without_location)
+       (create_fork_vfork_event_catchpoint): Adjust.
+       * infrun.c (fork_event): Change parent_pid and child_pid types to
+       ptid.
+       (follow_exec, inferior_has_forked, inferior_has_vforked)
+       (inferior_has_execd): Take a ptid_t and don't trim it.
+       * linux-thread-db.c (thread_db_wait): Don't trim the returned ptid.
+       * linux-nat.c (linux_child_follow_fork): Adjust.
+       * inf-ptrace.c (inf_ptrace_wait): Adjust.
+       * inf-ttrace.c (inf_ttrace_wait): Adjust.
+       * win32-nat.c (get_win32_debug_event): Don't set related_pid.
+
+2008-07-09  Pedro Alves  <pedro@codesourcery.com>
+
+       Add "executing" property to threads.
+
+       * inferior.h (target_executing): Delete.
+       * gdbthread.h (struct thread_info): Add executing_ field.
+       (set_executing, is_executing): New.
+       * thread.c (main_thread_executing): New.
+       (init_thread_list): Clear it and also main_thread_running.
+       (is_running): Return false if target has no execution.
+       (any_running, is_executing, set_executing): New.
+
+       * top.c: Include "gdbthread.h".
+       (target_executing): Delete.
+       (execute_command): Replace target_executing check by any_running.
+       * event-top.c: Include "gdbthread.h".
+       (display_gdb_prompt, command_handler): Replace target_executing by
+       is_running.
+       * inf-loop.c: Include "gdbthread.h".  Don't mark as not executing
+       here.  Replace target_executing by is_running.
+       * infrun.c (handle_inferior_event): Mark all threads as
+       not-executing.
+       * linux-nat.c (linux_nat_resume): Don't mark thread as executing
+       here.
+       * stack.c (get_selected_block): Return null if inferior is
+       executing.
+       * target.c (target_resume): Mark resumed ptid as executing.
+       * breakpoint.c (until_break_command): Replace target_executing
+       check by is_executing.
+       * remote.c (remote_async_resume): Don't mark inferior as executing
+       here.
+       * mi/mi-interp.c (mi_cmd_interpreter_exec): Replace target_executing
+       by any_running.
+       
+       * mi/mi-main.c (mi_cmd_exec_interrupt, mi_cmd_execute)
+       (mi_execute_async_cli_command): Replace target_executing by
+       is_running.
+
+       * frame.c (get_current_frame): Error out if the current thread is
+       executing.
+       (has_stack_frames): New.
+       (get_selected_frame, deprecated_safe_get_selected_frame): Check
+       has_stack_frames.
+       
+       * Makefile.in (event-top.o, frame.o, inf-loop.o, top.o): Depend on
+       $(gdbthread_h).
+
+2008-07-09  Pedro Alves  <pedro@codesourcery.com>
+
+       * symfile.c (load_command): Reopen the exec file and reread
+       symbols before anything else.
+
+2008-07-09  Pedro Alves  <pedro@codesourcery.com>
+
+       * remote-sim.c: Include gdbthread.h.
+       (remote_sim_ptid): New global.
+       (gdbsim_create_inferior): Silently add the main task to GDB's
+       thread list.
+       (gdbsim_close, gdbsim_mourn_inferior): Silently delete the main
+       task from GDB's thread list.
+       (gdbsim_resume): Adjust to use remote_sim_ptid.
+       (gdbsim_thread_alive, gdbsim_pid_to_str): New.
+       (init_gdbsim_ops): Register gdbsim_thread_alive and
+       gdbsim_pid_to_str.
+       (_initialize_remote_sim): Initialize remote_sim_ptid.
+       * Makefile.in (remote-sim.o): Depend on $(gdbthread_h).
+
+2008-07-09  Pedro Alves  <pedro@codesourcery.com>
+
+       * monitor (monitor_ptid): New global.
+       (monitor_open): Silently add the main task to GDB's thread list.
+       (monitor_close, monitor_mourn_inferior): Silently delete the main
+       task from GDB's thread list.
+       (monitor_thread_alive, monitor_pid_to_str): New.
+       (init_base_monitor_ops): Register monitor_thread_alive and
+       monitor_pid_to_str.
+       (_initialize_remote_monitors): Initialize monitor_ptid.
+
+       * gdbthread.h (delete_thread_silent): Declare.
+       * thread.c (delete_thread): Rename to ...
+       (delete_thread_1): ... this.  Add "silent" parameter.  If silent,
+       don't do exit notifications.
+       (delete_thread, delete_thread_silent): New, as wrappers to
+       delete_thread_1.
+
+2008-07-08  Pedro Alves  <pedro@codesourcery.com>
+
+       * breakpoint.c (update_global_location_list): Add boolean
+       "should_insert" argument.  Only insert locations if caller told it
+       too.
+       (update_global_location_list_nothrow): Add boolean "should_insert"
+       argument.  Pass it to update_global_location_list.
+       (insert_breakpoints, create_longjmp_breakpoint)
+       (create_overlay_event_breakpoint, enable_overlay_breakpoints)
+       (create_thread_event_breakpoint, create_solib_event_breakpoint)
+       (create_fork_vfork_event_catchpoint, create_exec_event_catchpoint)
+       (enable_watchpoints_after_interactive_call_stop)
+       (set_momentary_breakpoint, create_breakpoints)
+       (break_command_really, watch_command_1)
+       (create_ada_exception_breakpoint, update_breakpoint_locations)
+       (do_enable_breakpoint, enable_command): Pass true to
+       update_global_location_list.
+       (bpstat_stop_status, disable_overlay_breakpoints)
+       (disable_watchpoints_before_interactive_call_start)
+       (delete_breakpoint, disable_breakpoint, disable_command): Pass
+       false to update_global_location_list.
+       (update_breakpoints_after_exec): Don't temporarily disable
+       always-inserted mode.
+
+2008-07-08  Pedro Alves  <pedro@codesourcery.com>
+
+       * breakpoint.c (mark_breakpoints_out): Make public.
+       (update_breakpoints_after_exec): Don't call mark_breakpoints_out
+       here.  Update comment.
+       * breakpoint.h (mark_breakpoints_out): Declare.
+
+       * linux-nat.c (linux_handle_extended_wait): On
+       TARGET_WAITKIND_EXECD, call mark_breakpoints_out.
+       * inf-ttrace.c (inf_ttrace_wait): Likewise.
+
+2008-07-08  Pedro Alves  <pedro@codesourcery.com>
+
+       * infrun.c (follow_exec): Reset shared libraries before adding the
+       main exec file.
+
+2008-07-07  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * breakpoint.c (bpstat_copy): Call RELEASE_VALUE on the new OLD_VAL.
+
+2008-07-07  Pedro Alves  <pedro@codesourcery.com>
+
+       * i386-dicos-tdep.c: Include "inferior.h".
+       (i386_dicos_frame_align): New.
+       (i386_dicos_init_abi): Register i386_dicos_frame_align.  Set call
+       dummy location ON_STACK.
+       * Makefile.in (i386-dicos-tdep.o): Depend on $(inferior_h).
+
+2008-07-07  Joel Brobecker  <brobecker@adacore.com>
+
+       * gstdint.h: New file.
+
+2008-07-05  Vladimir Prus  <vladimir@codesourcery.com>
+
+       * mi/mi-interp.c (mi_on_resume): Don't try to report
+       resumed thread it the thread list is empty.
+
+2008-07-05  Pierre Muller  <muller@ics.u-strasbg.fr>
+
+       * cli/cli-decode.c (add_setshow_optional_filename_cmd): Set
+       completer for set to filename_completer.
+       
+       NEWS: Mention it.
+
+2008-07-04  Vladimir Prus  <vladimir@codesourcery.com>
+
+       Implement -target-attach.
+        * mi/mi-cmds.c (mi_cmds): Forward -target-attach to CLI attach.
+
+2008-06-21  Hui Zhu  <teawater@gmail.com>
+
+       * target-descriptions.c (maint_print_c_tdesc_cmd): Fix a memory leak.
+
+2008-07-03  Pedro Alves  <pedro@codesourcery.com>
+
+       * config/i386/nm-cygwin.h (ATTACH_NO_WAIT): Delete.
+       * config/i386/nm-i386gnu.h (ATTACH_NO_WAIT): Delete.
+
+       * target.h (struct target_ops): Add to_attach_no_wait member.
+       (target_attach_no_wait): New.
+       * target.c (update_current_target): Inherit to_attach_no_wait.
+
+       * infcmd.c: Replace ATTACH_NO_WAIT compile time check by
+       target_attach_no_wait runtime check.
+
+       * gnu-nat.c (init_gnu_ops): Set to_attach_no_wait in gnu_ops.
+       * win32-nat.c (init_win32_ops): Set to_attach_no_wait in
+       win32_ops.
+
+2008-07-03  Pedro Alves  <pedro@codesourcery.com>
+
+       * i386-tdep.c (i386_displaced_step_fixup): Condition log printing
+       on debug_displaced being set.
+
+2008-06-30  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * frame.c (get_prev_frame_1): Call frame_unwind_find_by_frame
+       directly instead of get_frame_id.
+
+2008-06-30  Luis Machado  <luisgpm@br.ibm.com>
+
+       * rs6000-tdep.c (ppc_displaced_step_fixup): New function.
+       (deal_with_atomic_sequence): Update BC masks.
+       (rs6000_gdbarch_init): Init displaced stepping infra-structure.
+       Define BRANCH_MASK, B_INSN, BC_INSN, BXL_INSN, BP_MASK and BP_INSN.
+
+2008-06-30  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * cris-tdep.c (crisv32_single_step_through_delay): Get this frame's
+       register, not the previous frame's.
+
+2008-06-30  Luis Machado  <luisgpm@br.ibm.com>
+
+       * source.c (select_source_symtab): Make sure we skip namespace
+       symtabs when showing cpp source code.
+
+2008-06-30  Hans-Peter Nilsson  <hp@axis.com>
+
+       * MAINTAINERS (Authorized committers): Fix my email address.
+
+2008-06-28  Vladimir Prus  <vladimir@codesourcery.com>
+
+       * mi/mi-cmds.c (mi_cmds): Route -exec-run, -exec-until,
+       -target-download and -target-select via CLI, so that
+       the quoting rules are the same as they were (unfortunately)
+       in all prior gdb releases.
+       * mi/mi-cmds.h (mi_cmd_exec_run, mi_cmd_exec_until)
+       (mi_cmd_target_download, mi_cmd_target_select): Remove.
+       * mi/mi-main.c (mi_cmd_exec_run, mi_cmd_exec_until)
+       (mi_cmd_target_download, mi_cmd_target_select): Remove.
+       (mi_cmd_execute): Set current_token even for commands
+       routed via CLI.
+
+2008-06-28  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * alphafbsd-tdep.c: Update for unwinder changes.
+       * alpha-linux-tdep.c: Likewise.
+       * alphanbsd-tdep.c: Likewise.
+       * alphaobsd-tdep.c: Likewise.
+       * avr-tdep.c: Likewise.
+       * cris-tdep.c: Likewise.
+       * frv-linux-tdep.c: Likewise.
+       * frv-tdep.c: Likewise.
+       * h8300-tdep.c: Likewise.
+       * hppa-linux-tdep.c: Likewise.
+       * iq2000-tdep.c: Likewise.
+       * m32c-tdep.c: Likewise.
+       * m32r-linux-tdep.c: Likewise.
+       * m32r-tdep.c: Likewise.
+       * m68hc11-tdep.c: Likewise.
+       * mep-tdep.c: Likewise.
+       * mn10300-tdep.c: Likewise.
+       * mt-tdep.c: Likewise.
+       * score-tdep.c: Likewise.
+       * sh64-tdep.c: Likewise.
+       * sh-tdep.c: Likewise.
+       * sparc64fbsd-tdep.c: Likewise.
+       * sparc64nbsd-tdep.c: Likewise.
+       * sparc64obsd-tdep.c: Likewise.
+       * v850-tdep.c: Likewise.
+       * vaxobsd-tdep.c: Likewise.
+       * vax-tdep.c: Likewise.
+       * xstormy16-tdep.c: Likewise.
+
+2008-06-28  Vladimir Prus  <vladimir@codesourcery.com>
+
+       * mi/mi-main.c (enum captured_mi_execute_command_actions)
+       (captured_mi_execute_command_args): Remove.
+       (captured_mi_execute_command): Cast the closure to mi_parse
+       pointer, not to captured_mi_execute_command_args, and don't
+       set the action field thereof.
+       (mi_execute_command): Pass struct mi_parse, not
+       captured_mi_execute_command_args to captured_mi_execute_command.
+       (mi_execute_command): Remove (dead) code for suppressing
+       printing prompt.
+
+2008-06-28  Pedro Alves  <pedro@codesourcery.com>
+
+       * linux-nat.c (enum sigchld_state): New.
+       (linux_nat_async_events_state): Renamed from
+       linux_nat_async_events_enabled.
+       (linux_nat_event_pipe_push, my_waitpid): Adjust.
+       (sigchld_default_action): New.
+       (lin_lwp_attach_lwp): Adjust.  Call linux_nat_async_events
+       unconditionally.
+       (linux_nat_create_inferior): Set events state to sigchld_default
+       state.
+       (linux_nat_resume): Adjust.
+       (linux_nat_wait): Call linux_nat_async_events unconditionally.
+       (sigchld_handler): Adjust.
+       (linux_nat_async_mask): Don't set SIGCHLD actions here.
+       (get_pending_events): Adjust.
+       (linux_nat_async_events): Rewrite to handle enum sigchld_state
+       instead of a boolean.
+       (linux_nat_async): Adjust.
+       (_initialize_linux_nat): Capture default SIGCHLD action into
+       sigchld_default_action.
+
+2008-06-28  Vladimir Prus  <vladimir@codesourcery.com>
+
+        * breakpoint.c (moribund_locations): New.
+        (bpstat_stop_status): Process moribund locations.
+        (update_global_location_list): Add removed
+        locations to moribund_locations.
+        (breakpoint_retire_moribund): New.
+        * breakpoint.h (struct bp_location): New field
+        events_till_retirement.
+        (breakpoint_retire_moribund): Declare.
+        * thread.c (thread_count): New.
+        * infrun.c (handle_inferior_event): Call
+        breakpoint_retire_moribund.
+        * gdbthread.h (thread_count): Declare.
+
+2008-06-27  Joseph Myers  <joseph@codesourcery.com>
+
+       * dfp.c (decimal_convert): Call match_endianness before and after
+       conversion.
+
+2008-06-27  Jonathan Larmour  <jifl@eCosCentric.com>
+
+       * remote.c (remote_insert_breakpoint): Ensure that if Z0
+       unsupported and we fall back to memory_insert_breakpoint, we
+       use the unmodified requested address.
+
+2008-06-27  Joel Brobecker  <brobecker@adacore.com>
+
+       * dwarf2read.c (read_attribute_value): Issue a complaint when
+       adjusting size attribute values of 0xffffffff as zero.
+
+2008-06-27  Joseph Myers  <joseph@codesourcery.com>
+
+       * i386-tdep.c (i386_16_byte_align_p): New.
+       (i386_push_dummy_call): Determine stack space required for
+       arguments going forwards allowing for 16-byte alignment, then push
+       arguments going forwards.
+
+2008-06-27  Pedro Alves  <pedro@codesourcery.com>
+
+       * infrun.c (start_remote): Don't clear thread list here.
+       * monitor.c (monitor_open): Include "gdbthread.h".  Clear thread
+       list here.
+       * remote.c (record_currthread): Upgrade the main thread and its
+       entry in the thread list if this is the first time we hear about
+       threads.
+       (remote_thread_alive): Consider magic_null_ptid or a ptid without
+       a tid member always alive.
+       (remote_find_new_threads): Don't update the main thread here.
+       (remote_start_remote): Clear thread list here.  Always add the
+       main thread.
+       (extended_remote_attach_1): Add the main thread here.
+       (extended_remote_mourn_1): Re-add the main thread here.
+       (extended_remote_create_inferior_1): Add a main thread.
+
+       * Makefile.in (monitor.o): Depend on $(gdbthread_h).
+
+2008-06-27  Pedro Alves  <pedro@codesourcery.com>
+
+       Use ptid_t.tid to store thread ids instead of ptid_t.pid.
+
+       * remote.c (magic_null_ptid, not_sent_ptid, any_thread_ptid): New
+       globals.
+       (general_thread, continue_thread): Change type to ptid_t.
+       (record_currthread): Take a ptid_t parameter instead of an
+       integer.
+       (MAGIC_NULL_PID): Delete.
+       (set_thread): Take a ptid_t parameter and adjust.
+       (set_general_thread, set_continue_thread): New.
+       (remote_thread_alive, remote_newthread_step)
+       (remote_current_thread, remote_find_new_threads)
+       (remote_threads_info, remote_start_remote, remote_vcont_resume)
+       (remote_resume_1, remote_wait, extended_remote_create_inferior_1)
+       (threadalive_test, remote_pid_to_str)
+       (remote_get_thread_local_address): Adjust.
+       (_initialize_remote): Initialize magic_null_ptid, not_sent_ptid
+       and any_thread_ptid.
+
+2008-06-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * configure.ac (--enable-tui): AC_MSG_ERROR for explicit --enable-tui.
+       * configure: Regenerated.
+
+2008-06-26  Joel Brobecker  <brobecker@adacore.com>
+
+       * dwarf2read.c (read_attribute_value): Treat size attribute
+       values of 0xffffffff as if the attribute value was zero.
+
+2008-06-26  Vladimir Prus  <vladimir@codesourcery.com>
+
+       * linux-nat.c: Add description of overall logic.
+
+2008-06-26  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * Makefile.in (GNULIB_H): Use GNULIB_STDINT_H.
+       (gdb_stdint_h, gdb_stdint.h, stamp-int): Delete.  Remove
+       all dependencies on $(gdb_stdint_h).
+       (distclean): Do not delete gdb_stdint.h.
+       * acinclude.m4: Do not use stdint.m4.
+       * configure.ac: Set GNULIB_STDINT_H.  Remove tests for stdint.h,
+       uintptr_t, and gdb_stdint.h.
+       * defs.h: Include <stdint.h>.
+       * gdb_thread_db.h: Assume stdint.h is already included.
+       * breakpoint.c, findcmd.c, hppa-tdep.c, inf-ptrace.c, proc-service.c,
+       rs6000-nat.c, spu-linux-nat.c, target.c, win32-nat.c: Do not
+       include gdb_stdint.h.
+       * configure, config.in: Regenerate.
+
+2008-06-26  Joseph Myers  <joseph@codesourcery.com>
+
+       * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call): Handle passing
+       decimal floating-point values in GPRs for soft-float.
+       (do_ppc_sysv_return_value): Handle returning decimal
+       floating-point values in GPRs for soft-float.
+
+2008-06-26  Vladimir Prus  <vladimir@codesourcery.com>
+
+       * target.c (target_read_until_error): New.
+        * target.h (target_read_until_error): Declare.
+        * mi/mi-main.c (mi_cmd_data_read_memory): Use
+        target_read_until_error.
+
+2008-06-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       Fix a memory leak found by Hui Zhu <teawater@gmail.com>.
+       * c-exp.y (parse_number): Move the S and SAVED_CHAR initialization
+       after the DECFLOAT detection to fix a memory leak.  Remove the
+       redundant NUM initialization.  Protect the DECFLOAT detection memory
+       access before the P block.  Restore the P memory content for the
+       DECFLOAT detection.
+
+2008-06-25  Vladimir Prus  <vladimir@codesourcery.com>
+
+       Kill the return value for all MI command functions.
+       * mi/mi-cmds.h (enum mi_cmd_result): Remove.
+       (mi_cmd_argv_ftype): Change return type to void.
+
+       * mi/mi-main.c: Adjust all function that implement
+       MI commands to return nothing.
+       (struct captured_mi_execute_command_actions):
+       Remove the rc field.
+       (mi_cmd_execute): Return nothing.
+       (mi_execute_async_cli_command): Return nothing.
+       (mi_cmd_exec_interrupt): Don't print ^done here.
+       (mi_cmd_target_select): Don't print ^connected here.
+       (captured_mi_execute_command): Don't check for MI_CMD_DONE.
+       Special-case -target-select and output ^connected, not ^done.
+
+       * mi/mi-cmd-break.c: Adjust.
+       * mi/mi-cmd-disas.c: Adjust.
+       * mi/mi-cmd-env.c: Adjust.
+       * mi/mi-cmd-file.c: Adjust.
+       * mi/mi-cmd-stack.c: Adjust.
+       * mi/mi-cmd-target.c: Adjust.
+       * mi/mi-cmd-var.c: Adjust.
+       * mi/mi-interp.c: Adjust.
+       * mi/mi-symbol-cmds.c: Adjust.
+
+2008-06-25  Vladimir Prus  <vladimir@codesourcery.com>
+
+       Emit ^running via observer.
+       * mi/mi-interp.c (mi_cmd_interpreter_exec): Do no print
+        ^running here.
+        (mi_on_resume): Print ^running if not previously output.
+        * mi/mi-main.c (running_result_record_printed): New.
+        (captured_mi_execute_command): Reset
+        running_result_record_printed.  Use running_result_record_printed
+        to decide if we should skip ^done.
+        (mi_execute_async_cli_command): Don't print ^running here.
+        * mi/mi-main.h (current_token, running_result_record_printed):
+        Declare.
+
+2008-06-24  Michael Snyder  <msnyder@specifix.com>
+
+       * infrun.c (_initialize_infrun): White space and typo fix.
+
+2008-06-23  Christopher Faylor  <me.gdb.changelog@cgf.cx>
+
+       * win32-nat.c (safe_symbol_file_add_stub): Remove unused variable.
+       (do_initial_win32_stuff): Fix problem with inability to set breakpoints
+       when first loading DLL with "dll" command.
+
+2008-06-19  Pierre Muller  <muller@ics.u-strasbg.fr>
+
+       * gnu-nat.c (proc_string): Use capital T for "Thread".
+2008-06-19  Pierre Muller  <muller@ics.u-strasbg.fr>
+
+       * win32-nat.c (win32_pid_to_str): Use capital T for "Thread".
+2008-06-18  Joel Brobecker  <brobecker@adacore.com>
+
+        * solib-osf.c (osf_solib_create_inferior_hook): Do nothing if
+        the target cannot run.
+
+2008-06-18  Joel Brobecker  <brobecker@adacore.com>
+
+       * solib-osf.c (osf_solib_create_inferior_hook): Do nothing if
+       we're attaching to a running process.
+
+2008-06-18  Pierre Muller  <muller@ics.u-strasbg.fr>
+
+       * win32-nat.c (handle_load_dll): Give dll name and load address
+       if debug_events is on.
+       (handle_unload_dll): Likewise.
+
+2008-06-14  Vladimir Prus  <vladimir@codesourcery.com>
+
+       Don't suppress *running when doing finish.
+        * infcall.c (call_function_by_hand): Set both
+        suppress_resume_observer and suppress_stop_observer.
+        * infcmd.c (suppress_run_stop_observers): Split into...
+        (suppress_resume_observer, suppress_stop_observer): ...those.
+        (finish_command_continuation): Clear suppress_stop_observer.
+        (finish_command): Set suppress_stop_observer.
+        * inferior.h (suppress_run_stop_observers): Split into...
+        (suppress_resume_observer, suppress_stop_observer): ...those.
+        * infrun.c (normal_stop): Check for suppress_stop_observer.
+        * thread.c (set_running): Check for suppress_resume_observer.
+
+2008-06-12  Pedro Alves  <pedro_alves@portugalmail.pt>
+           Pierre Muller  <muller@ics.u-strasbg.fr>
+
+       * gdbarch.sh (gdbarch_skip_main_prologue): New.
+       * gdbarch.h, gdbarch.c: Regenerate.
+       * i386-tdep.h (i386_skip_main_prologue): Declare.
+       * i386-tdep.c (i386_skip_main_prologue): New.
+       * i386-cygwin-tdep.c (i386_cygwin_init_abi): Register 
+       i386_skip_main_prologue as gdbarch_skip_main_prologue gdbarch callback.
+       * symtab.c (find_function_start_sal): When pc points at the "main"
+       function, call gdbarch_skip_main_prologue.
+
+2008-06-11  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * value.c (value_primitive_field): Fetch lazy register values.
+
+2008-06-11  Pedro Alves  <pedro@codesourcery.com>
+
+       * NEWS: Mention support removal of undocumented S AA p PID stop
+       reply packet.
+
+       * remote.c (remote_wait): Remove undocumented S AA p PID support.
+
+2008-06-10  Stan Shebs  <stan@codesourcery.com>
+
+       * MAINTAINERS: Update my affiliation and address.
+
+2008-06-10  Andreas Schwab  <schwab@suse.de>
+
+       * top.c (print_gdb_version): Don't print final newline.
+
+2008-06-10  Vladimir Prus  <vladimir@codesourcery.com>
+
+       Implement *running.
+        * Makefile.in: Update dependencies.
+        * gdbthread.h (struct thread_info): New field
+        running_.
+        (set_running, is_running): New.
+        * thread.c (set_running, is_running): New.
+        * inferior.h (suppress_normal_stop_observer): Rename to...
+        (suppress_run_stop_observers): ..this.
+        * infcmd.c (suppress_normal_stop_observer): Rename to...
+        (suppress_run_stop_observers): ..this.
+        (finish_command_continuation, finish_command): Adjust.
+        * infcall.c (call_function_by_hand): Adjust.
+        * infrun.c (normal_stop): Call set_running.
+        * target.c (target_resume): New.  Call set_running.
+        * target.h (target_resume): Convert from macro to
+        a function.
+
+        * mi/mi-interp.c (mi_on_resume): New.
+        (mi_interpreter_init): Register mi_on_resume.
+
+2008-06-10  Vladimir Prus  <vladimir@codesourcery.com>
+
+       Use observers to report stop events in MI.
+        * mi/mi-interp.c (mi_on_normal_stop): New.
+        (mi_interpreter_init): Register mi_on_normal_stop.
+        (mi_interpreter_exec_continuation): Remove.
+        (mi_cmd_interpreter_exec): Don't register the above.
+        * mi/mi-main.c (captured_mi_execute_command): Don't care
+        about sync_execution.
+        (mi_execute_async_cli_command): Don't install continuation.  Don't
+        print *stopped.
+        (mi_exec_async_cli_cmd_continuation): Remove.
+
+2008-06-10  Vladimir Prus  <vladimir@codesourcery.com>
+
+       Suppress normal stop observer when it's problematic.
+        * inferior.h (suppress_normal_stop_observer): New.
+        * infcall.c (call_function_by_hand): Disable stop events when
+        doing function calls.
+        * infmcd.c (suppress_normal_stop_observer): New.
+        (finish_command_continuation): Call normal_stop observer
+        explicitly.
+        (finish_command): Disable stop events inside proceed.
+        * infrun.c (normal_stop): Don't call normal stop observer if
+        suppressed of if multi-step is in progress.
+
+2008-06-10  Vladimir Prus  <vladimir@codesourcery.com>
+
+       Remove stale code.
+        * infrun.c (finish_command): Don't pass cleanup
+        to continuation.
+        (finish_command_continuation): Don't grab cleanup from
+        the passed data, as we don't use, and cannot, use it anyway.
+
+2008-06-10  Vladimir Prus  <vladimir@codesourcery.com>
+
+       Introduce common cleanup for restoring integers.
+        * defs.h (make_cleanup_restore_integer): New declaration.
+        (struct cleanup): New field free_arg.
+        (make_my_cleanup_2): New.
+        * utils.c (restore_integer_closure, restore_integer)
+        (make_cleanup_restore_integer): New.
+        (make_my_cleanup): Initialize the free_arg field and
+        renamed to make_my_cleanup_2.
+        (do_my_cleanups): Call free_arg.
+        (discard_cleanups): Call free_arg.
+        * breakpoint.c (restore_always_inserted_mode): Remove.
+        (update_breakpoints_after_exec): Use make_cleanup_restore_integer.
+
+2008-06-09  Doug Evans  <dje@google.com>
+
+       * remote.c (remote_wait): Include beginning of malformed packet
+       in error output.
+
+2008-06-09  Tom Tromey  <tromey@redhat.com>
+
+       * completer.c (complete_line): Don't special-case
+       expression_completer.
+       (expression_completer): Only pass last word to
+       location_completer.
+       * c-exp.y (yylex): Check 'token', not 'operator'.
+
+2008-06-09  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * configure.ac (build_warnings): Add -Wno-format for mingw.
+       * configure: Regenerated.
+
+2008-06-07  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * NEWS: Make indentation consistent.  Move exec tracing entry out
+       of remote packet list.
+
+2008-06-06  Tom Tromey  <tromey@redhat.com>
+
+       * value.h (evaluate_subexpression_type, extract_field_op):
+       Declare.
+       * printcmd.c (_initialize_printcmd): Use expression_completer for
+       'p', 'inspect', 'call'.
+       * parser-defs.h (parse_field_expression): Declare.
+       * parse.c: Include exceptions.h.
+       (in_parse_field, expout_last_struct): New globals.
+       (mark_struct_expression): New function.
+       (prefixify_expression): Return int.
+       (prefixify_subexp): Return int.  Use expout_last_struct.
+       (parse_exp_1): Update.
+       (parse_exp_in_context): Add 'out_subexp' argument.  Handle
+       in_parse_field.
+       (parse_field_expression): New function.
+       * expression.h (parse_field_expression): Declare.
+       (in_parse_field): Likewise.
+       * eval.c (evaluate_subexpression_type): New function.
+       (extract_field_op): Likewise.
+       * completer.h (expression_completer): Declare.
+       * completer.c (expression_completer): New function.
+       (count_struct_fields, add_struct_fields): New functions.
+       * c-exp.y (yyparse): Redefine.
+       (COMPLETE): New token.
+       (exp): New productions.
+       (saw_name_at_eof, last_was_structop): New globals.
+       (yylex): Return COMPLETE when needed.  Recognize in_parse_field.
+       (c_parse): New function.
+       * breakpoint.c (_initialize_breakpoint): Use expression_completer
+       for watch, awatch, and rwatch.
+       * Makefile.in (parse.o): Depend on exceptions_h.
+
+2008-06-06  Paul Pluzhnikov  <ppluzhnikov@google.com>
+
+       PR gdb/1147
+       * gdb/valopts.c (find_overload_match): Handle references
+       to pointers.
+
+2008-06-06  Paul N. Hilfinger  <hilfinger@adacore.com>
+
+       * ada-lang.c (ada_value_assign): Correct big-endian case to take into
+       account the bitsize of the 'from' operand.
+
+2008-06-06  Pedro Alves  <pedro@codesourcery.com>
+
+       * annotate.h (annotate_thread_changed): Declare.
+
+2008-06-06  Nick Roberts  <nickrob@snap.net.nz>
+
+       * annotate.c (annotate_thread_changed): New function.
+       * thread.c (thread_command) : Use it.
+       * infrun.c (normal_stop): Use it.
+
+2008-06-05  Vladimir Prus  <vladimir@codesourcery.com>
+            Nathan Sidwell  <nathan@codesourcery.com>
+            Joseph Myers  <joseph@codesourcery.com>
+
+       * acinclude.m4: Include ../config/acx.m4.
+       * configure.ac: Use ACX_PKGVERSION and ACX_BUGURL.
+       * configure, config.in: Regenerate.
+       * main.c (print_gdb_help): Use REPORT_BUGS_TO for bug-reporting
+       address.
+       * top.c (print_gdb_version): Use PKGVERSION and REPORT_BUGS_TO.
+
+2008-06-05  Pedro Alves  <pedro@codesourcery.com>
+
+       Replace 'target async' by 'maintenance set remote-async' and
+       'target remote' combination.
+
+       * remote.c (remote_async_wait): Merge into remote_wait, and
+       remove.
+       (remote_async_permitted, remote_async_permitted_set): New
+       variables.
+       (set_maintenance_remote_async_permitted)
+       (show_maintenance_remote_async_permitted): New functions.
+       (remote_async_ops, extended_async_remote_ops): Delete.
+       (remote_async_open, extended_remote_async_open): Delete.
+       (remote_open_1): Drop async_p parameter.  Update callers.  Replace
+       async_p with remote_async_permitted checks.
+       (extended_async_remote_attach): Delete.
+       (remote_resume, remote_async_resume): Merge and leave remote_resume.
+       (remote_async_terminal_inferior): Rename to...
+       (remote_terminal_inferior): ... this, and add
+       remote_async_termitted check.
+       (remote_async_terminal_ours): Rename to...
+       (remote_terminal_ours): ... this, and add remote_async_termitted
+       check.
+       (remote_wait, remote_async_wait): Merge and leave remote_wait
+       only.
+       (remote_kill, remote_async_kill): Merge and leave remote_kill
+       only.
+       (remote_async_mourn, extended_async_remote_mourn): Delete.
+       (extended_remote_create_inferior_1): Drop async_p parameter.
+       Update callers.  Always use extended_remote_ops.
+       (extended_remote_async_create_inferior): Delete.
+       (remote_return_zero): Delete.
+       (init_remote_ops): Register remote_can_async_p, remote_async,
+       remote_async_mask, remote_terminal_inferior and
+       remote_terminal_ours.
+       (remote_can_async_p, remote_is_async_p): Check for
+       remote_async_permitted.
+       (init_remote_async_ops, init_extended_async_remote_ops): Remove.
+       (set_remote_cmd): Don't add async and extended-async targets.
+       (_initialize_remote): Add set/show remote-async maintenance
+       commands.
+
+2008-06-05  Pedro Alves  <pedro@codesourcery.com>
+
+       * remote.c (kill_kludge): Delete.
+       (remote_wait, remote_async_wait): Don't set it.
+       (remote_kill, remote_async_kill): Don't do anything with it.
+
 2008-06-05  Pedro Alves  <pedro@codesourcery.com>
 
        * linux-thread-db.c (thread_db_wait): Don't trim event ptid.
        (default_target_signal_to_host, default_target_signal_from_host): New
        functions.
 
+2008-05-01  Daniel Jacobowitz  <dan@codesourcery.com>
+           Pedro Alves  <pedro@codesourcery.com>
+
+       Based on work by Jan Kratochvil <jan.kratochvil@redhat.com> and Jeff
+       Johnston <jjohnstn@redhat.com>.
+
+       * NEWS: Mention attach to stopped process fix.
+       * infcmd.c (detach_command, disconnect_command): Discard the thread
+       list.
+       * infrun.c (handle_inferior_event): Do not ignore non-SIGSTOP while
+       attaching.  Use signal_stop_state.
+       (signal_stop_state): Check stop_soon.
+       * linux-nat.c (kill_lwp): Declare earlier.
+       (pid_is_stopped, linux_nat_post_attach_wait): New.
+       (lin_lwp_attach_lwp): Use linux_nat_post_attach_wait.  Update
+       comments.
+       (linux_nat_attach): Use linux_nat_post_attach_wait.
+       (detach_callback, linux_nat_detach): Improve handling for signalled
+       processes.
+       (linux_nat_pid_to_str): Always print out the LWP ID if it differs
+       from the process ID.
+       * Makefile.in (infcmd.o): Update.
+
 2008-05-01  Daniel Jacobowitz  <dan@codesourcery.com>
 
        * arm-linux-tdep.h (ARM_CPSR_REGNUM): Delete definition.
This page took 0.034102 seconds and 4 git commands to generate.