diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2009-12-03 17:59:02 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2009-12-03 17:59:02 +0000 |
commit | fb169834478e0db3ffe865300c0cf4556160c7bd (patch) | |
tree | f47e832ccac7c9be5b12a34cedccc203610a3b9c /gdb/linux-thread-db.c | |
parent | 1f3b5d1bafa98e6c80d623b585b42c76a97b58ee (diff) | |
download | ppe42-binutils-fb169834478e0db3ffe865300c0cf4556160c7bd.tar.gz ppe42-binutils-fb169834478e0db3ffe865300c0cf4556160c7bd.zip |
gdb/
* linux-thread-db.c (find_new_threads_once): Change errp and err types
to td_err_e.
(thread_db_find_new_threads_2): Change err type to td_err_e.
Diffstat (limited to 'gdb/linux-thread-db.c')
-rw-r--r-- | gdb/linux-thread-db.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/linux-thread-db.c b/gdb/linux-thread-db.c index 32ac5c5d6d..c48b87006e 100644 --- a/gdb/linux-thread-db.c +++ b/gdb/linux-thread-db.c @@ -1363,11 +1363,11 @@ find_new_threads_callback (const td_thrhandle_t *th_p, void *data) static int find_new_threads_once (struct thread_db_info *info, int iteration, - int *errp) + td_err_e *errp) { volatile struct gdb_exception except; struct callback_data data; - int err = TD_ERR; + td_err_e err = TD_ERR; data.info = info; data.new_threads = 0; @@ -1440,7 +1440,7 @@ thread_db_find_new_threads_2 (ptid_t ptid, int until_no_new) } else { - int err; + td_err_e err; find_new_threads_once (info, 0, &err); if (err != TD_OK) |