]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit
* remote-sim.c (program_loaded, gdbsim_desc, remote_sim_ptid)
authorKevin Buettner <kevinb@redhat.com>
Tue, 10 Aug 2010 00:19:26 +0000 (00:19 +0000)
committerKevin Buettner <kevinb@redhat.com>
Tue, 10 Aug 2010 00:19:26 +0000 (00:19 +0000)
commitdb04efe6afedfc35b7540b1ce9cafb77e2b8360f
tree4c271813ae9938da8085400ef71d0c0121173909
parenta8d1ba1945622b06dfe28d674eaee84a00540a2e
* remote-sim.c (program_loaded, gdbsim_desc, remote_sim_ptid)
(resume_siggnal, resume_step): Move these static globals...
(struct sim_inferior_data): ...into this new struct.
(sim_inferior_data_key, next_pid, sim_argv, gdbsim_is_open):
New static globals.
(gdb_callback, callbacks_initialized): Move these globals to
a point earlier in the file.
(check_for_duplicate_sim_descriptor, get_sim_inferior_data)
(get_sim_inferior_data_by_ptid, sim_inferior_data_cleanup)
(gdbsim_close_inferior, gdbsim_resume_inferior)
(gdbsim_stop_inferior): New functions.
(SIM_INSTANCE_NOT_NEEDED, SIM_INSTANCE_NEEDED, INITIAL_PID):
New constants.
(gdbsim_fetch_register, gdbsim_store_register, gdbsim_load)
(gdbsim_create_inferior, gdbsim_open, gdbsim_close, gdbsim_resume)
(gdbsim_stop, gdbsim_cntrl_c, gdbsim_wait)
(gdbsim_xfer_inferior_memory, gdbsim_files_info)
(gdbsim_mourn_inferior, simulator_command, gdbsim_thread_alive,
(gdbsim_pid_to_str): Invoke `get_sim_inferior_data' to set
new local variable `sim_data' in each of these functions.  Use
`sim_data' to reference former globals `program_loaded',
`gdbsim_desc', `remote_sim_ptid', `resume_siggnal', and
`resume_step'.
(gdbsim_open): Remove local variable `argv'.  Put results of call
to `gdb_buildargv' in `sim_argv' rather than in `argv'.  Don't
make a cleanup for it.  Free it though when a sim instance cannot
be obtained.
(gdbsim_close): Free sim_argv and null it out as appropriate.
Close sim instances in all inferiors.
(gdbsim_cntrl_c): Stop all inferiors.
(gdbsim_wait):
(_initialize_remote_sim): Initialize `sim_inferior_data_key'.
gdb/ChangeLog
gdb/remote-sim.c