diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-07-08 20:21:36 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-07-08 20:21:36 +0000 |
commit | 8059d5aa1c46fa62c37add1bf7627ad5c7583cb4 (patch) | |
tree | cbea9af1cfa0d844153c42cb6a4ccfddf9274d3d /gdb | |
parent | cc61049cca934074f2f8c58fefc3937a182cc9c8 (diff) | |
download | gdb-8059d5aa1c46fa62c37add1bf7627ad5c7583cb4.zip gdb-8059d5aa1c46fa62c37add1bf7627ad5c7583cb4.tar.gz gdb-8059d5aa1c46fa62c37add1bf7627ad5c7583cb4.tar.bz2 |
* remote-udi.c (udi_wait): Make type, instead of name, of first
parameter a ptid_t.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/remote-udi.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9879b7e..1d36d73 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2001-07-08 Andrew Cagney <ac131313@redhat.com> + + * remote-udi.c (udi_wait): Make type, instead of name, of first + parameter a ptid_t. + 2001-07-07 Andrew Cagney <ac131313@redhat.com> * ser-mac.c: Make obsolete. diff --git a/gdb/remote-udi.c b/gdb/remote-udi.c index 0015e99..83cc553 100644 --- a/gdb/remote-udi.c +++ b/gdb/remote-udi.c @@ -409,7 +409,7 @@ udi_resume (ptid_t ptid, int step, enum target_signal sig) storing status in STATUS just as `wait' would. */ static ptid_t -udi_wait (int ptid_t, struct target_waitstatus *status) +udi_wait (ptid_t ptid, struct target_waitstatus *status) { UDIInt32 MaxTime; UDIPId PId; |