diff options
author | Pedro Alves <palves@redhat.com> | 2018-06-07 17:27:47 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2018-06-07 18:57:37 +0100 |
commit | d6ca69cddc3fc6ef61fdfe3c3803d13b0b4e13e9 (patch) | |
tree | ed4b826fa773038c603131579fac9ffdfb734053 /gdb/target.h | |
parent | b6a8c27bb8fb383be6f57724eb9aafa9f2f83aa5 (diff) | |
download | gdb-d6ca69cddc3fc6ef61fdfe3c3803d13b0b4e13e9.zip gdb-d6ca69cddc3fc6ef61fdfe3c3803d13b0b4e13e9.tar.gz gdb-d6ca69cddc3fc6ef61fdfe3c3803d13b0b4e13e9.tar.bz2 |
Eliminate find_target_beneath
Call target_ops::beneath() throughout instead.
gdb/ChangeLog:
2018-06-07 Pedro Alves <palves@redhat.com>
* target.h (find_target_beneath): Delete declaration.
* target.c (find_target_beneath): Delete definition.
* aix-thread.c: All callers of find_target_beneath adjusted to
call target_ops::beneath instead.
* bsd-uthread.c: Likewise.
* linux-thread-db.c: Likewise.
* ravenscar-thread.c: Likewise.
* sol-thread.c: Likewise.
* spu-multiarch.c: Likewise.
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/target.h b/gdb/target.h index 04047ce..9dd29a6 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -2377,8 +2377,6 @@ extern void noprocess (void) ATTRIBUTE_NORETURN; extern void target_require_runnable (void); -extern struct target_ops *find_target_beneath (struct target_ops *); - /* Find the target at STRATUM. If no target is at that stratum, return NULL. */ |