diff options
author | Mark Kettenis <kettenis@gnu.org> | 2004-08-14 23:14:34 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2004-08-14 23:14:34 +0000 |
commit | b8d75aad7f0aa99b413b729659a0a9a5e689aed3 (patch) | |
tree | 7959d9515d89519d35af5e84256b388fdb349737 /gdb/inferior.h | |
parent | fafd70c1018edd121b7f9ee38120df45cd54f2ad (diff) | |
download | gdb-b8d75aad7f0aa99b413b729659a0a9a5e689aed3.tar.gz |
* inferior.h (call_ptrace): Replace PTRACE_ARG3_TYPE with
PTRACE_TYPE_ARG3.
* infptrace.c (call_ptrace, child_resume, attach, detach)
(U_REGS_OFFSET, fetch_register, store_register, child_xfer_memory)
(udot_info): Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
* inftarg.c (ptrace_me): Replace PTRACE_ARG3_TYPE with
PTRACE_TYPE_ARG3.
Diffstat (limited to 'gdb/inferior.h')
-rw-r--r-- | gdb/inferior.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/inferior.h b/gdb/inferior.h index e80f2d71eee..6e6ee90ecbf 100644 --- a/gdb/inferior.h +++ b/gdb/inferior.h @@ -240,7 +240,7 @@ extern void child_resume (ptid_t, int, enum target_signal); #define PTRACE_ARG3_TYPE int /* Correct definition for most systems. */ #endif -extern int call_ptrace (int, int, PTRACE_ARG3_TYPE, int); +extern int call_ptrace (int, int, PTRACE_TYPE_ARG3, int); extern void pre_fork_inferior (void); |