mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-04 13:57:12 +08:00
i386-darwin-nat: Use ptid from regcache instead of inferior_ptid
gdb/ChangeLog: * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers, i386_darwin_store_inferior_registers): Use ptid from regcache.
This commit is contained in:

committed by
Simon Marchi

parent
aac12e2497
commit
1afaf9f42f
@ -1,3 +1,8 @@
|
|||||||
|
2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
|
||||||
|
|
||||||
|
* i386-darwin-nat.c (i386_darwin_fetch_inferior_registers,
|
||||||
|
i386_darwin_store_inferior_registers): Use ptid from regcache.
|
||||||
|
|
||||||
2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
|
2017-03-17 Simon Marchi <simon.marchi@polymtl.ca>
|
||||||
|
|
||||||
* i386-bsd-nat.c (i386bsd_fetch_inferior_registers,
|
* i386-bsd-nat.c (i386bsd_fetch_inferior_registers,
|
||||||
|
@ -50,7 +50,7 @@ static void
|
|||||||
i386_darwin_fetch_inferior_registers (struct target_ops *ops,
|
i386_darwin_fetch_inferior_registers (struct target_ops *ops,
|
||||||
struct regcache *regcache, int regno)
|
struct regcache *regcache, int regno)
|
||||||
{
|
{
|
||||||
thread_t current_thread = ptid_get_tid (inferior_ptid);
|
thread_t current_thread = ptid_get_tid (regcache_get_ptid (regcache));
|
||||||
int fetched = 0;
|
int fetched = 0;
|
||||||
struct gdbarch *gdbarch = get_regcache_arch (regcache);
|
struct gdbarch *gdbarch = get_regcache_arch (regcache);
|
||||||
|
|
||||||
@ -167,7 +167,7 @@ static void
|
|||||||
i386_darwin_store_inferior_registers (struct target_ops *ops,
|
i386_darwin_store_inferior_registers (struct target_ops *ops,
|
||||||
struct regcache *regcache, int regno)
|
struct regcache *regcache, int regno)
|
||||||
{
|
{
|
||||||
thread_t current_thread = ptid_get_tid (inferior_ptid);
|
thread_t current_thread = ptid_get_tid (regcache_get_ptid (regcache));
|
||||||
struct gdbarch *gdbarch = get_regcache_arch (regcache);
|
struct gdbarch *gdbarch = get_regcache_arch (regcache);
|
||||||
|
|
||||||
#ifdef BFD64
|
#ifdef BFD64
|
||||||
|
Reference in New Issue
Block a user