diff options
author | Pedro Alves <palves@redhat.com> | 2015-08-06 17:29:01 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2015-08-06 17:29:01 +0100 |
commit | a44892be35506471a53e5bc8c2def4ffccf451f9 (patch) | |
tree | ffa95b488c44731e8bdf756eedca458dc91e65bc /gdb/gdbserver/gdbthread.h | |
parent | ca0a5f0bd33d0aa17a5cf518e41e47ddfde486ad (diff) | |
download | gdb-a44892be35506471a53e5bc8c2def4ffccf451f9.zip gdb-a44892be35506471a53e5bc8c2def4ffccf451f9.tar.gz gdb-a44892be35506471a53e5bc8c2def4ffccf451f9.tar.bz2 |
gdbserver: no point in hiding the regcache type nowadays
The regcache used to be hidden inside inferiors.c, but since the
tracepoints support that it's a first class object. This also fixes a
few implicit pointer conversion errors in C++ mode, caused by a few
places missing the explicit cast.
gdb/gdbserver/ChangeLog:
2015-08-06 Pedro Alves <palves@redhat.com>
* gdbthread.h (struct regcache): Forward declare.
(struct thread_info) <regcache_data>: Now a struct regcache
pointer.
* inferiors.c (inferior_regcache_data)
(set_inferior_regcache_data): Now work with struct regcache
pointers.
* inferiors.h (struct regcache): Forward declare.
(inferior_regcache_data, set_inferior_regcache_data): Now work
with struct regcache pointers.
* regcache.c (get_thread_regcache, regcache_invalidate_thread)
(free_register_cache_thread): Remove struct regcache pointer
casts.
Diffstat (limited to 'gdb/gdbserver/gdbthread.h')
-rw-r--r-- | gdb/gdbserver/gdbthread.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/gdbserver/gdbthread.h b/gdb/gdbserver/gdbthread.h index b3e3e9d..d6959f4 100644 --- a/gdb/gdbserver/gdbthread.h +++ b/gdb/gdbserver/gdbthread.h @@ -22,6 +22,7 @@ #include "inferiors.h" struct btrace_target_info; +struct regcache; struct thread_info { @@ -30,7 +31,7 @@ struct thread_info struct inferior_list_entry entry; void *target_data; - void *regcache_data; + struct regcache *regcache_data; /* The last resume GDB requested on this thread. */ enum resume_kind last_resume_kind; |