diff options
author | Yao Qi <yao.qi@linaro.org> | 2015-08-25 11:38:29 +0100 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2015-08-25 11:39:14 +0100 |
commit | ed8b7b421c98533b9b08995edd7363328b55921e (patch) | |
tree | bf71f82351442b5fa261949fce4c3af875aa2b51 /gdb/gdbserver/linux-aarch64-low.c | |
parent | db3cb7cb3e51e5eb834412adbf90e81bb76846c6 (diff) | |
download | gdb-ed8b7b421c98533b9b08995edd7363328b55921e.zip gdb-ed8b7b421c98533b9b08995edd7363328b55921e.tar.gz gdb-ed8b7b421c98533b9b08995edd7363328b55921e.tar.bz2 |
Move aarch64_linux_new_thread to nat/aarch64-linux.c
This patch moves aarch64_linux_new_thread in GDB and GDBserver to
nat/aarch64-linux.c.
gdb:
2015-08-25 Yao Qi <yao.qi@linaro.org>
* aarch64-linux-nat.c (aarch64_linux_new_thread): Move it to ...
* nat/aarch64-linux.c (aarch64_linux_new_thread): ... here.
* nat/aarch64-linux.h (aarch64_linux_new_thread): Declare.
gdb/gdbserver:
2015-08-25 Yao Qi <yao.qi@linaro.org>
* linux-aarch64-low.c (aarch64_linux_new_thread): Remove.
Diffstat (limited to 'gdb/gdbserver/linux-aarch64-low.c')
-rw-r--r-- | gdb/gdbserver/linux-aarch64-low.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/gdb/gdbserver/linux-aarch64-low.c b/gdb/gdbserver/linux-aarch64-low.c index d35d4e9..dbe4951 100644 --- a/gdb/gdbserver/linux-aarch64-low.c +++ b/gdb/gdbserver/linux-aarch64-low.c @@ -438,22 +438,6 @@ aarch64_linux_new_process (void) return info; } -/* Implementation of linux_target_ops method "linux_new_thread". */ - -static void -aarch64_linux_new_thread (struct lwp_info *lwp) -{ - struct arch_lwp_info *info = xcalloc (1, sizeof (*info)); - - /* Mark that all the hardware breakpoint/watchpoint register pairs - for this thread need to be initialized (with data from - aarch_process_info.debug_reg_state). */ - DR_MARK_ALL_CHANGED (info->dr_changed_bp, aarch64_num_bp_regs); - DR_MARK_ALL_CHANGED (info->dr_changed_wp, aarch64_num_wp_regs); - - lwp->arch_private = info; -} - /* Implementation of linux_target_ops method "linux_new_fork". */ static void |