aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gdb/ChangeLog6
-rw-r--r--gdb/lynx-nat.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index b309561..57638de 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,9 @@
+Fri Sep 30 06:42:42 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
+
+ * config/nm-lynx.h (PTRACE_ARG3_TYPE): Define to int, not char *.
+
+ * lynx-nat.c (child_wait): Pass fourth argument to ptrace.
+
Thu Sep 29 08:22:27 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* xcoffread.c (read_xcoff_symtab): Fix comment for yesterday's change.
diff --git a/gdb/lynx-nat.c b/gdb/lynx-nat.c
index 95a3d91..b7bc824 100644
--- a/gdb/lynx-nat.c
+++ b/gdb/lynx-nat.c
@@ -649,7 +649,7 @@ child_wait (pid, ourstatus)
{
int realsig;
- realsig = ptrace (PTRACE_GETTRACESIG, pid, 0);
+ realsig = ptrace (PTRACE_GETTRACESIG, pid, (PTRACE_ARG3_TYPE)0, 0);
if (realsig == SIGNEWTHREAD)
{