diff options
author | Yao Qi <yao.qi@linaro.org> | 2015-08-04 14:34:14 +0100 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2015-08-04 14:34:14 +0100 |
commit | ded48a5ef34314f7af698b7ec7916b084c94b18d (patch) | |
tree | 826b537cb9950cbc3b6074bfcbc5976a096363d3 /gdb/gdbserver/linux-low.h | |
parent | c6343a91d94e9516afe56dfe85e435922bd9ea04 (diff) | |
download | gdb-ded48a5ef34314f7af698b7ec7916b084c94b18d.zip gdb-ded48a5ef34314f7af698b7ec7916b084c94b18d.tar.gz gdb-ded48a5ef34314f7af698b7ec7916b084c94b18d.tar.bz2 |
Move have_ptrace_getregset to linux-low.c
This patch moves variable have_ptrace_getregset from linux-x86-low.c
to linux-low.c, so that arm can use it too.
gdb/gdbserver:
2015-08-04 Yao Qi <yao.qi@linaro.org>
* linux-x86-low.c (have_ptrace_getregset): Move it to ...
* linux-low.c: ... here.
* linux-low.h (have_ptrace_getregset): Declare it.
Diffstat (limited to 'gdb/gdbserver/linux-low.h')
-rw-r--r-- | gdb/gdbserver/linux-low.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/gdbserver/linux-low.h b/gdb/gdbserver/linux-low.h index 5a3697b..24fb015 100644 --- a/gdb/gdbserver/linux-low.h +++ b/gdb/gdbserver/linux-low.h @@ -373,3 +373,5 @@ int thread_db_handle_monitor_command (char *); int thread_db_get_tls_address (struct thread_info *thread, CORE_ADDR offset, CORE_ADDR load_module, CORE_ADDR *address); int thread_db_look_up_one_symbol (const char *name, CORE_ADDR *addrp); + +extern int have_ptrace_getregset; |