diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:34:09 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:45:53 -0700 |
commit | c15906d8e64c7083787ae1548f614f2938089771 (patch) | |
tree | 5d9adcc0703cd1c1b34619cef9513390acf87e0c /gdb/nto-tdep.h | |
parent | daf5e9b64c8e2c130a433c0ddbf73522dc321295 (diff) | |
download | gdb-c15906d8e64c7083787ae1548f614f2938089771.zip gdb-c15906d8e64c7083787ae1548f614f2938089771.tar.gz gdb-c15906d8e64c7083787ae1548f614f2938089771.tar.bz2 |
Add target_ops argument to to_extra_thread_info
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_extra_thread_info>: Add
argument.
(target_extra_thread_info): Add argument.
* target.c (update_current_target): Update.
* remote.c (remote_threads_extra_info): Add 'self' argument.
* ravenscar-thread.c (ravenscar_extra_thread_info): Add 'self'
argument.
* nto-tdep.h (nto_extra_thread_info): Add 'self' argument.
* nto-tdep.c (nto_extra_thread_info): Add 'self' argument.
* linux-thread-db.c (thread_db_extra_thread_info): Add 'self'
argument.
* inf-ttrace.c (inf_ttrace_extra_thread_info): Add 'self'
argument.
* bsd-uthread.c (bsd_uthread_extra_thread_info): Add 'self'
argument.
* aix-thread.c (aix_thread_extra_thread_info): Add 'self'
argument.
Diffstat (limited to 'gdb/nto-tdep.h')
-rw-r--r-- | gdb/nto-tdep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/nto-tdep.h b/gdb/nto-tdep.h index 03fd89d..aa965c5 100644 --- a/gdb/nto-tdep.h +++ b/gdb/nto-tdep.h @@ -166,6 +166,6 @@ void nto_dummy_supply_regset (struct regcache *regcache, char *regs); int nto_in_dynsym_resolve_code (CORE_ADDR pc); -char *nto_extra_thread_info (struct thread_info *); +char *nto_extra_thread_info (struct target_ops *self, struct thread_info *); #endif |