* 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.
+2009-12-03 Jan Kratochvil <jan.kratochvil@redhat.com>
+
+ * 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.
+
2009-12-03 Paul Pluzhnikov <ppluzhnikov@google.com>
PR gdb/11022
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;
}
else
{
- int err;
+ td_err_e err;
find_new_threads_once (info, 0, &err);
if (err != TD_OK)