From: Michael Snyder Date: Fri, 13 Dec 2002 23:28:28 +0000 (+0000) Subject: 2002-12-13 Michael Snyder X-Git-Tag: cagney-unwind-20030108-branchpoint~343 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3197744f240d7eb8c29e338a2fdb60e5597cd02a;p=platform%2Fupstream%2Fbinutils.git 2002-12-13 Michael Snyder * thread-db.c (thread_from_lwp): Uniquify error msg. (lwp_from_thread): Ditto. (check_event): Ditto. (find_new_threads_callback): Ditto. (thread_db_pid_to_str): Ditto. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index eef2d2e..ffcd7b0 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,11 @@ +2002-12-13 Michael Snyder + + * thread-db.c (thread_from_lwp): Uniquify error msg. + (lwp_from_thread): Ditto. + (check_event): Ditto. + (find_new_threads_callback): Ditto. + (thread_db_pid_to_str): Ditto. + 2002-12-13 Andrew Cagney * frame.h (get_frame_saved_regs): Declare. diff --git a/gdb/thread-db.c b/gdb/thread-db.c index 8140437..9f4cde7 100644 --- a/gdb/thread-db.c +++ b/gdb/thread-db.c @@ -250,7 +250,8 @@ thread_from_lwp (ptid_t ptid) err = td_thr_get_info_p (&th, &ti); if (err != TD_OK) - error ("Cannot get thread info: %s", thread_db_err_str (err)); + error ("thread_from_lwp: cannot get thread info: %s", + thread_db_err_str (err)); return BUILD_THREAD (ti.ti_tid, GET_PID (ptid)); } @@ -272,7 +273,8 @@ lwp_from_thread (ptid_t ptid) err = td_thr_get_info_p (&th, &ti); if (err != TD_OK) - error ("Cannot get thread info: %s", thread_db_err_str (err)); + error ("lwp_from_thread: cannot get thread info: %s", + thread_db_err_str (err)); return BUILD_LWP (ti.ti_lid, GET_PID (ptid)); } @@ -685,7 +687,8 @@ check_event (ptid_t ptid) err = td_thr_get_info_p (msg.th_p, &ti); if (err != TD_OK) - error ("Cannot get thread info: %s", thread_db_err_str (err)); + error ("check_event: cannot get thread info: %s", + thread_db_err_str (err)); ptid = BUILD_THREAD (ti.ti_tid, GET_PID (ptid)); @@ -950,7 +953,8 @@ find_new_threads_callback (const td_thrhandle_t *th_p, void *data) err = td_thr_get_info_p (th_p, &ti); if (err != TD_OK) - error ("Cannot get thread info: %s", thread_db_err_str (err)); + error ("find_new_threads_callback: cannot get thread info: %s", + thread_db_err_str (err)); if (ti.ti_state == TD_THR_UNKNOWN || ti.ti_state == TD_THR_ZOMBIE) return 0; /* A zombie -- ignore. */ @@ -993,7 +997,7 @@ thread_db_pid_to_str (ptid_t ptid) err = td_thr_get_info_p (&th, &ti); if (err != TD_OK) - error ("Cannot get thread info for thread %ld: %s", + error ("thread_db_pid_to_str: cannot get thread info for %ld: %s", (long) GET_THREAD (ptid), thread_db_err_str (err)); if (ti.ti_state == TD_THR_ACTIVE && ti.ti_lid != 0)