Introduce utility function find_inferior_ptid
authorSimon Marchi <simon.marchi@ericsson.com>
Mon, 15 Dec 2014 17:00:55 +0000 (12:00 -0500)
committerSimon Marchi <simon.marchi@ericsson.com>
Mon, 15 Dec 2014 17:00:55 +0000 (12:00 -0500)
commitc9657e708a03cb06ad92ce81bf17c68d28e57689
tree87595320210e128f722acce17a2b7d5e91dfc5f2
parente882ef3cfc3d991433c3b9aed104961ad3ce5904
Introduce utility function find_inferior_ptid

This patch introduces find_inferior_ptid to replace the common idiom

  find_inferior_pid (ptid_get_pid (...));

It replaces all the instances of that idiom that I found with the new
function.

No significant changes before/after the patch in the regression suite
on amd64 linux.

gdb/ChangeLog:

* inferior.c (find_inferior_ptid): New function.
* inferior.h (find_inferior_ptid): New declaration.
* ada-tasks.c (ada_get_task_number): Use find_inferior_ptid.
* corelow.c (core_pid_to_str): Same.
* darwin-nat.c (darwin_resume): Same.
* infrun.c (fetch_inferior_event): Same.
(get_inferior_stop_soon): Same.
(handle_inferior_event): Same.
(handle_signal_stop): Same.
* linux-nat.c (resume_lwp): Same.
(stop_wait_callback): Same.
* mi/mi-interp.c (mi_new_thread): Same.
(mi_thread_exit): Same.
* proc-service.c (ps_pglobal_lookup): Same.
* record-btrace.c (record_btrace_step_thread): Same.
* remote-sim.c (gdbsim_close_inferior): Same.
(gdbsim_resume): Same.
(gdbsim_stop): Same.
* sol2-tdep.c (sol2_core_pid_to_str): Same.
* target.c (memory_xfer_partial_1): Same.
(default_thread_address_space): Same.
* thread.c (thread_change_ptid): Same.
(switch_to_thread): Same.
(do_restore_current_thread_cleanup): Same.
15 files changed:
gdb/ChangeLog
gdb/ada-tasks.c
gdb/corelow.c
gdb/darwin-nat.c
gdb/inferior.c
gdb/inferior.h
gdb/infrun.c
gdb/linux-nat.c
gdb/mi/mi-interp.c
gdb/proc-service.c
gdb/record-btrace.c
gdb/remote-sim.c
gdb/sol2-tdep.c
gdb/target.c
gdb/thread.c
This page took 0.02758 seconds and 4 git commands to generate.