* thread-db.c (enable_thread_event_reporting): Correct warning
authorMark Kettenis <kettenis@gnu.org>
Wed, 11 Jul 2001 09:14:51 +0000 (09:14 +0000)
committerMark Kettenis <kettenis@gnu.org>
Wed, 11 Jul 2001 09:14:51 +0000 (09:14 +0000)
message about getting thread death breakpoint.
Reported by John S Kallal <jskallal@home.com>.

gdb/ChangeLog
gdb/thread-db.c

index 0d20664a30533b94a6840c1e52affc9fb3447872..bbb1549d4e12409581cd998d330e8f9e94996580 100644 (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.
index 8ddc6a2733203fbec92cdf20d36d86a665f04f12..45cdb7201b95b1df74cb667dfaa30407bb5d915c 100644 (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;
     }
This page took 0.04221 seconds and 4 git commands to generate.