diff options
author | Yao Qi <yao.qi@linaro.org> | 2015-07-24 14:40:34 +0100 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2015-07-24 14:40:34 +0100 |
commit | 55d7b841962c6e054735acdca2e0bb485afa0144 (patch) | |
tree | 3bb6c5d469cf9750f0a45c4eb0b9035ef8fb146c /gdb/gdbserver/linux-low.h | |
parent | c06cbd92be66d82eb323a8c6ec451c1dccc02107 (diff) | |
download | gdb-55d7b841962c6e054735acdca2e0bb485afa0144.zip gdb-55d7b841962c6e054735acdca2e0bb485afa0144.tar.gz gdb-55d7b841962c6e054735acdca2e0bb485afa0144.tar.bz2 |
Remove proc->priv->new_inferior
As the result of the previous patch, new_inferior is no longer used.
This patch is to remove it.
gdb/gdbserver:
2015-07-24 Yao Qi <yao.qi@linaro.org>
* linux-low.c (linux_create_inferior): Remove setting to
proc->priv->new_inferior.
(linux_attach): Likewise.
(linux_low_filter_event): Likewise.
* linux-low.h (struct process_info_private) <new_inferior>: Remove.
Diffstat (limited to 'gdb/gdbserver/linux-low.h')
-rw-r--r-- | gdb/gdbserver/linux-low.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gdb/gdbserver/linux-low.h b/gdb/gdbserver/linux-low.h index 3300da9..5a3697b 100644 --- a/gdb/gdbserver/linux-low.h +++ b/gdb/gdbserver/linux-low.h @@ -115,11 +115,6 @@ struct process_info_private /* &_r_debug. 0 if not yet determined. -1 if no PT_DYNAMIC in Phdrs. */ CORE_ADDR r_debug; - - /* This flag is true iff we've just created or attached to the first - LWP of this process but it has not stopped yet. As soon as it - does, we need to call the low target's arch_setup callback. */ - int new_inferior; }; struct lwp_info; |