diff options
author | Pedro Alves <palves@redhat.com> | 2008-07-09 11:02:56 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2008-07-09 11:02:56 +0000 |
commit | 9de2bdd7d43971a765aedb1773f9e175d98e98ba (patch) | |
tree | cbe78c0be3ddb57386d628d66e9096fa183f0824 /gdb/Makefile.in | |
parent | 5e0b29c16aca01c2a9a8ae251ee7998d96a32124 (diff) | |
download | gdb-9de2bdd7d43971a765aedb1773f9e175d98e98ba.zip gdb-9de2bdd7d43971a765aedb1773f9e175d98e98ba.tar.gz gdb-9de2bdd7d43971a765aedb1773f9e175d98e98ba.tar.bz2 |
* 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).
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 055a759..d4b1297 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2671,7 +2671,7 @@ remote-sim.o: remote-sim.c $(defs_h) $(inferior_h) $(value_h) \ $(gdb_string_h) $(terminal_h) $(target_h) $(gdbcore_h) \ $(gdb_callback_h) $(gdb_remote_sim_h) $(command_h) \ $(regcache_h) $(gdb_assert_h) $(sim_regno_h) $(arch_utils_h) \ - $(readline_h) + $(readline_h) $(gdbthread_h) rs6000-nat.o: rs6000-nat.c $(defs_h) $(inferior_h) $(target_h) $(gdbcore_h) \ $(xcoffsolib_h) $(symfile_h) $(objfiles_h) $(libbfd_h) $(bfd_h) \ $(exceptions_h) $(gdb_stabs_h) $(regcache_h) $(arch_utils_h) \ |