* gdbserver/low-lynx.c (create_inferior): Pass all 4 args to ptrace.

This commit is contained in:
Jim Kingdon
1994-09-30 23:02:22 +00:00
parent a5732a3067
commit d3006726b0
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
Fri Sep 30 15:59:55 1994 Jim Kingdon (kingdon@lioth.cygnus.com)
* gdbserver/low-lynx.c (create_inferior): Pass all 4 args to ptrace.
Fri Sep 30 06:42:42 1994 Ian Lance Taylor (ian@cygnus.com)
* lynx-nat.c (child_wait): Use status.w_status, not status, in

View File

@@ -72,7 +72,7 @@ create_inferior (program, allargs)
setpgrp(0, pgrp);
ioctl (0, TIOCSPGRP, &pgrp);
ptrace (PTRACE_TRACEME);
ptrace (PTRACE_TRACEME, 0, (PTRACE_ARG3_TYPE)0, 0);
execv (program, allargs);