gdb: remove unpush_target free function
unpush_target unpushes the passed-in target from the current inferior's target stack. Calling it is therefore an implicit dependency on the current global inferior. Remove that function and make the callers use the inferior::unpush_target method directly. This sometimes allows using the inferior from the context rather than the global current inferior. target_unpusher::operator() now needs to be implemented in target.c, otherwise target.h and inferior.h both need to include each other, and that wouldn't work. gdb/ChangeLog: * target.h (unpush_target): Remove, update all callers to use `inferior::unpush_target` instead. (struct target_unpusher) <operator()>: Just declare. * target.c (unpush_target): Remove. (target_unpusher::operator()): New. Change-Id: Ia5172dfb3f373e0a75b991885b50322ca2142a8c
This commit is contained in:
parent
70e958370c
commit
fadf6add30
17 changed files with 36 additions and 35 deletions
|
@ -1364,7 +1364,7 @@ thread_db_target::detach (inferior *inf, int from_tty)
|
|||
/* NOTE: From this point on, inferior_ptid is null_ptid. */
|
||||
|
||||
/* Detach the thread_db target from this inferior. */
|
||||
unpush_target (this);
|
||||
inf->unpush_target (this);
|
||||
}
|
||||
|
||||
ptid_t
|
||||
|
@ -1398,7 +1398,7 @@ thread_db_target::wait (ptid_t ptid, struct target_waitstatus *ourstatus,
|
|||
/* New image, it may or may not end up using thread_db. Assume
|
||||
not unless we find otherwise. */
|
||||
delete_thread_db_info (beneath, ptid.pid ());
|
||||
unpush_target (this);
|
||||
current_inferior ()->unpush_target (this);
|
||||
|
||||
return ptid;
|
||||
}
|
||||
|
@ -1420,7 +1420,7 @@ thread_db_target::mourn_inferior ()
|
|||
target_beneath->mourn_inferior ();
|
||||
|
||||
/* Detach the thread_db target from this inferior. */
|
||||
unpush_target (this);
|
||||
current_inferior ()->unpush_target (this);
|
||||
}
|
||||
|
||||
struct callback_data
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue