diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:44:08 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:46:35 -0700 |
commit | bd7ae0f5ac99eac95313ae91ae705c45f669f20f (patch) | |
tree | 0fac3b51ca519d64aaf9d45fd1a75af660fc41fa /gdb/remote.c | |
parent | d9e68a2c60bc6a2e5e698f5849a20df208ac130a (diff) | |
download | gdb-bd7ae0f5ac99eac95313ae91ae705c45f669f20f.zip gdb-bd7ae0f5ac99eac95313ae91ae705c45f669f20f.tar.gz gdb-bd7ae0f5ac99eac95313ae91ae705c45f669f20f.tar.bz2 |
Add target_ops argument to to_get_tib_address
2014-02-19 Tom Tromey <tromey@redhat.com>
* windows-nat.c (windows_get_tib_address): Add 'self' argument.
* target.h (struct target_ops) <to_get_tib_address>: Add argument.
(target_get_tib_address): Add argument.
* target.c (update_current_target): Update.
* remote.c (remote_get_tib_address): Add 'self' argument.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index 1e33ed7..bd420aa 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -9320,7 +9320,7 @@ remote_get_thread_local_address (struct target_ops *ops, Returns 1 if ptid is found and thread_local_base is non zero. */ static int -remote_get_tib_address (ptid_t ptid, CORE_ADDR *addr) +remote_get_tib_address (struct target_ops *self, ptid_t ptid, CORE_ADDR *addr) { if (remote_protocol_packets[PACKET_qGetTIBAddr].support != PACKET_DISABLE) { |