diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-01-06 16:34:51 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-01-06 16:34:51 +0000 |
commit | 45dc9be38877cbb8218182b5c5ebd6e82e5ccd47 (patch) | |
tree | 82ad3d6e6f401a050d61bf80e7fc4e49a6c46c8d /gdb/remote-mm.c | |
parent | 588d1d685c66966dfdc5c57964e245424060a076 (diff) | |
download | gdb-45dc9be38877cbb8218182b5c5ebd6e82e5ccd47.zip gdb-45dc9be38877cbb8218182b5c5ebd6e82e5ccd47.tar.gz gdb-45dc9be38877cbb8218182b5c5ebd6e82e5ccd47.tar.bz2 |
* procfs.c (procfs_wait): Fix argument name to match 4 Jan changes.
* Move target_signal_from_host, target_signal_to_host, and
store_waitstatus from inftarg.c to target.c. procfs needs them.
* target.c: Include "wait.h" and <signal.h>.
* target.h, infrun.c (proceed), proceed callers: Pass new code
TARGET_SIGNAL_DEFAULT instead of -1. This avoids problems with
enums being treated as unsigned and is cleaner.
* infrun.c (signals_info): Don't print TARGET_SIGNAL_DEFAULT or
TARGET_SIGNAL_0.
* infcmd.c (signal_command), infrun.c (signals_info):
Don't allow user to specify numeric equivalent of
TARGET_SIGNAL_DEFAULT.
Diffstat (limited to 'gdb/remote-mm.c')
-rw-r--r-- | gdb/remote-mm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote-mm.c b/gdb/remote-mm.c index 91ae155..423ba64 100644 --- a/gdb/remote-mm.c +++ b/gdb/remote-mm.c @@ -180,7 +180,7 @@ Assuming you are at NYU debuging a kernel, i.e., no need to download.\n\n"); init_wait_for_inferior (); clear_proceed_status (); stop_soon_quietly = 1; - proceed(-1,-1,0); + proceed (-1, TARGET_SIGNAL_DEFAULT, 0); normal_stop (); } /**************************************************** REMOTE_MOURN_INFERIOR */ |