diff options
author | Fred Fish <fnf@specifix.com> | 1992-03-15 01:09:14 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1992-03-15 01:09:14 +0000 |
commit | 318bf84ffe5bc5472cefe0c1a838f132f9ac4ff9 (patch) | |
tree | 928f9df1d55c71c1bf0d2238a942e8fe5cd9dfc9 /gdb/infrun.c | |
parent | 0750528ab6401a40f6673eeb29b58dea7a6e92b9 (diff) | |
download | gdb-318bf84ffe5bc5472cefe0c1a838f132f9ac4ff9.zip gdb-318bf84ffe5bc5472cefe0c1a838f132f9ac4ff9.tar.gz gdb-318bf84ffe5bc5472cefe0c1a838f132f9ac4ff9.tar.bz2 |
Globs of changes. See the ChangeLog for details. Most related to
using the new mmalloc package.
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r-- | gdb/infrun.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index 07083f0..051682f 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -652,7 +652,7 @@ child_create_inferior (exec_file, allargs, env) correct program, and are poised at the first instruction of the new program. */ #ifdef SOLIB_CREATE_INFERIOR_HOOK - SOLIB_CREATE_INFERIOR_HOOK (); + SOLIB_CREATE_INFERIOR_HOOK (pid); #endif /* Should this perhaps just be a "proceed" call? FIXME */ @@ -1232,7 +1232,7 @@ wait_for_inferior () goto step_over_function; tmp = SKIP_TRAMPOLINE_CODE (stop_pc); - if (tmp != NULL) + if (tmp != 0) stop_func_start = tmp; if (find_pc_function (stop_func_start) != 0) @@ -1316,7 +1316,7 @@ step_into_function: step_range_end = sal.end; goto save_pc; } - abort(); /* We never fall through here */ + /* We never fall through here */ } if (trap_expected |