diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-01-22 17:36:41 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-01-22 17:36:41 +0000 |
commit | 08f74b9271bc22a0e0a55707f18b23778d25be1e (patch) | |
tree | 99644d884730208f4aa745688add3ca311b6238b /gdb/m3-nat.c | |
parent | ad9f5e78b81cfeb4c6eda5118cae093e9221db6a (diff) | |
download | gdb-08f74b9271bc22a0e0a55707f18b23778d25be1e.zip gdb-08f74b9271bc22a0e0a55707f18b23778d25be1e.tar.gz gdb-08f74b9271bc22a0e0a55707f18b23778d25be1e.tar.bz2 |
* fork-child.c, inferior.h (fork_inferior): New argument shell_file.
* procfs.c (procfs_create_inferior), inftarg.c (child_create_inferior),
m3-nat.c (m3_create_inferior): Pass it.
* procfs.c: Remove ptrace function. It was declared in a way which
conflicted with the prototype in unistd.h on Solaris.
Diffstat (limited to 'gdb/m3-nat.c')
-rw-r--r-- | gdb/m3-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/m3-nat.c b/gdb/m3-nat.c index 66bd679..90cddb0 100644 --- a/gdb/m3-nat.c +++ b/gdb/m3-nat.c @@ -3879,7 +3879,7 @@ m3_create_inferior (exec_file, allargs, env) char *allargs; char **env; { - fork_inferior (exec_file, allargs, env, m3_trace_m3, m3_trace_him); + fork_inferior (exec_file, allargs, env, m3_trace_m3, m3_trace_him, NULL); /* We are at the first instruction we care about. */ /* Pedal to the metal... */ proceed ((CORE_ADDR) -1, 0, 0); |