* thread-db.c (enable_thread_event_reporting): Correct warning

message about getting thread death breakpoint.
Reported by John S Kallal <jskallal@home.com>.
This commit is contained in:
Mark Kettenis 2001-07-11 09:14:51 +00:00
parent 90ab7e9a68
commit 936742abbe
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
2001-07-11 Mark Kettenis <kettenis@gnu.org>
* thread-db.c (enable_thread_event_reporting): Correct warning
message about getting thread death breakpoint.
Reported by John S Kallal <jskallal@home.com>.
* i386-tdep.c (i386_extract_return_value): "Fix" comment.
(i386_store_return_value): Frob FPU status and tag word to make
sure the return value is the only value on the FPU stack.

View File

@ -404,7 +404,7 @@ enable_thread_event_reporting (void)
err = td_ta_event_addr_p (thread_agent, TD_DEATH, &notify);
if (err != TD_OK)
{
warning ("Unable to get location for thread creation breakpoint: %s",
warning ("Unable to get location for thread death breakpoint: %s",
thread_db_err_str (err));
return;
}