diff options
author | Eli Zaretskii <eliz@gnu.org> | 2001-06-04 07:29:00 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2001-06-04 07:29:00 +0000 |
commit | 3161604405622a3356d9f51b1d5c1469c70b95d7 (patch) | |
tree | cb0508841bcecc1ba6dc7346f4c19e90978a7d7b /gdb/go32-nat.c | |
parent | 9ab433aae8243622dbc5756a7f7c82cf0fd5cb1c (diff) | |
download | gdb-3161604405622a3356d9f51b1d5c1469c70b95d7.zip gdb-3161604405622a3356d9f51b1d5c1469c70b95d7.tar.gz gdb-3161604405622a3356d9f51b1d5c1469c70b95d7.tar.bz2 |
* go32-nat.c (go32_wait): Change the return value to ptid_t.
* config/djgpp/fnchange.lst: Add two new files in the
gdb/testsuite/gdb.c++/ directory to the remapped names.
* config/djgpp/djconfig.sh (lt_cv_sys_max_cmd_len): Set to 12KB.
Diffstat (limited to 'gdb/go32-nat.c')
-rw-r--r-- | gdb/go32-nat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/go32-nat.c b/gdb/go32-nat.c index c77a9fc..d7647e9 100644 --- a/gdb/go32-nat.c +++ b/gdb/go32-nat.c @@ -340,7 +340,7 @@ go32_resume (ptid_t ptid, int step, enum target_signal siggnal) static char child_cwd[FILENAME_MAX]; -static int +static ptid_t go32_wait (ptid_t ptid, struct target_waitstatus *status) { int i; @@ -455,7 +455,7 @@ go32_wait (ptid_t ptid, struct target_waitstatus *status) } } } - return SOME_PID; + return pid_to_ptid (SOME_PID); } static void |