diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2015-07-29 17:15:46 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2015-07-29 17:16:20 -0400 |
commit | aa58a496ed9a3ee19233af0bfb7c76ae02b9b2c1 (patch) | |
tree | c94a3c3648b5940b782e7496361a36b203d11aae /gdb/nat/mips-linux-watch.c | |
parent | d618e4c51c73f2139a1aa8903d677a4202956f21 (diff) | |
download | gdb-aa58a496ed9a3ee19233af0bfb7c76ae02b9b2c1.zip gdb-aa58a496ed9a3ee19233af0bfb7c76ae02b9b2c1.tar.gz gdb-aa58a496ed9a3ee19233af0bfb7c76ae02b9b2c1.tar.bz2 |
MIPS ptrace build fixes
Since Pedro's ptrace cleanups, the MIPS buildbot compilation fails.
Code in MIPS native uses ptrace with 3 arguments, where ptrace requires
4. When looking at the definition of ptrace in
/usr/include/sys/ptrace.h, it shows that it takes a variable number of
arguments. The wrapper macro in nat/gdb_ptrace.h takes a fixed number
of arguments (4). That would explain why it used to work and stopped.
I am pushing this as obvious, tell me if there is any problem.
I built-tested this with a MIPS toolchain (ct-ng), but I don't have any
setup to test it. At least it should put back the buildbot builder in a
better shape.
gdb/ChangeLog:
* mips-linux-nat.c (write_watchpoint_regs): Add NULL as ptrace's 4th
parameter.
(mips_linux_new_thread): Likewise.
* nat/mips-linux-watch.c (mips_linux_read_watch_registers): Likewise.
gdb/gdbserver/ChangeLog:
* linux-mips-low.c (mips_linux_prepare_to_resume): Add NULL as
ptrace's 4th parameter.
Diffstat (limited to 'gdb/nat/mips-linux-watch.c')
-rw-r--r-- | gdb/nat/mips-linux-watch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/nat/mips-linux-watch.c b/gdb/nat/mips-linux-watch.c index 02d83f6..231dbe0 100644 --- a/gdb/nat/mips-linux-watch.c +++ b/gdb/nat/mips-linux-watch.c @@ -164,7 +164,7 @@ mips_linux_read_watch_registers (long lwpid, { if (force || *watch_readback_valid == 0) { - if (ptrace (PTRACE_GET_WATCH_REGS, lwpid, watch_readback) == -1) + if (ptrace (PTRACE_GET_WATCH_REGS, lwpid, watch_readback, NULL) == -1) { *watch_readback_valid = -1; return 0; |