forked from Imagelibrary/binutils-gdb
Introduce regcache_get_ptid
This patch introduces the regcache_get_ptid function, which can be used to retrieve the ptid a regcache is connected to. It is used in subsequent patches. gdb/ChangeLog: * regcache.h (regcache_get_ptid): New function. * regcache.c (regcache_get_ptid): New function.
This commit is contained in:
committed by
Simon Marchi
parent
1a01e7c6b0
commit
ddaaf0fb86
@@ -215,6 +215,16 @@ struct regcache
|
||||
ptid_t ptid;
|
||||
};
|
||||
|
||||
/* See regcache.h. */
|
||||
|
||||
ptid_t
|
||||
regcache_get_ptid (const struct regcache *regcache)
|
||||
{
|
||||
gdb_assert (!ptid_equal (regcache->ptid, minus_one_ptid));
|
||||
|
||||
return regcache->ptid;
|
||||
}
|
||||
|
||||
static struct regcache *
|
||||
regcache_xmalloc_1 (struct gdbarch *gdbarch, struct address_space *aspace,
|
||||
int readonly_p)
|
||||
|
||||
Reference in New Issue
Block a user