diff options
author | Vladimir Prus <vladimir@codesourcery.com> | 2008-03-23 09:53:52 +0000 |
---|---|---|
committer | Vladimir Prus <vladimir@codesourcery.com> | 2008-03-23 09:53:52 +0000 |
commit | 6208b47d6c2552d1dd81d85b8b8ce350ea9fd09e (patch) | |
tree | 7d20e530ffd90c59b0a745d749a1afcb50f3da0d /gdb/Makefile.in | |
parent | 44a67aa79a7f75ab484b560b0327b21acdd97d5c (diff) | |
download | gdb-6208b47d6c2552d1dd81d85b8b8ce350ea9fd09e.zip gdb-6208b47d6c2552d1dd81d85b8b8ce350ea9fd09e.tar.gz gdb-6208b47d6c2552d1dd81d85b8b8ce350ea9fd09e.tar.bz2 |
* thread.c (make_cleanup_restore_current_thread): Make it
globally visible.
* gdbthread.h (make_cleanup_restore_current_thread): Declare.
* varobj.c (varobj_update): Don't save/restore frame.
(c_value_of_root): Save/restore thread and frame here,
using make_cleanup_restore_current_thread.
* Makefile.in: Update dependecies.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 6b63d79..72910d3 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -2940,7 +2940,8 @@ value.o: value.c $(defs_h) $(gdb_string_h) $(symtab_h) $(gdbtypes_h) \ $(gdb_assert_h) $(regcache_h) $(block_h) $(dfp_h) varobj.o: varobj.c $(defs_h) $(exceptions_h) $(value_h) $(expression_h) \ $(frame_h) $(language_h) $(wrapper_h) $(gdbcmd_h) $(block_h) \ - $(gdb_assert_h) $(gdb_string_h) $(varobj_h) $(vec_h) + $(gdb_assert_h) $(gdb_string_h) $(varobj_h) $(vec_h) $(gdbthread_h) \ + $(inferior_h) vaxbsd-nat.o: vaxbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) $(target_h) \ $(vax_tdep_h) $(inf_ptrace_h) $(bsd_kvm_h) vax-nat.o: vax-nat.c $(defs_h) $(inferior_h) $(gdb_assert_h) $(vax_tdep_h) \ |