diff options
author | Kevin Buettner <kevinb@redhat.com> | 2001-05-04 04:15:33 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2001-05-04 04:15:33 +0000 |
commit | 39f770628a4eaf018fec8d55684bf2ec16ada9cc (patch) | |
tree | 69027cfb7df2ecc521ab2cc1d25a7dd6cbe56632 /gdb/remote-eb.c | |
parent | b1af961c8433821f61dd1849cff9eb9a8bb974e8 (diff) | |
download | gdb-39f770628a4eaf018fec8d55684bf2ec16ada9cc.zip gdb-39f770628a4eaf018fec8d55684bf2ec16ada9cc.tar.gz gdb-39f770628a4eaf018fec8d55684bf2ec16ada9cc.tar.bz2 |
Phase 1 of the ptid_t changes.
Diffstat (limited to 'gdb/remote-eb.c')
-rw-r--r-- | gdb/remote-eb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/remote-eb.c b/gdb/remote-eb.c index aa7608c..fa003c6 100644 --- a/gdb/remote-eb.c +++ b/gdb/remote-eb.c @@ -520,7 +520,7 @@ eb_detach (int from_tty) /* Tell the remote machine to resume. */ void -eb_resume (int pid, int step, enum target_signal sig) +eb_resume (ptid_t ptid, int step, enum target_signal sig) { if (step) { @@ -559,8 +559,8 @@ eb_resume (int pid, int step, enum target_signal sig) /* Wait until the remote machine stops, then return, storing status in STATUS just as `wait' would. */ -int -eb_wait (struct target_waitstatus *status) +ptid_t +eb_wait (ptid_t ptid, struct target_waitstatus *status) { /* Strings to look for. '?' means match any single character. Note that with the algorithm we use, the initial character |