* inftarg.c (child_thread_alive): New function to see if a
[deliverable/binutils-gdb.git] / gdb / annotate.c
index 73612aa703f13d1ff269119c93e8c55302a1987a..470a486d593fb7f65d925479a93fb4601c2d62f4 100644 (file)
@@ -21,7 +21,21 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "annotate.h"
 #include "value.h"
 #include "target.h"
+#include "gdbtypes.h"
+#include "breakpoint.h"
+\f
+static void print_value_flags PARAMS ((struct type *));
 
+static void
+print_value_flags (t)
+     struct type *t;
+{
+  if (can_dereference (t))
+    printf_filtered ("*");
+  else
+    printf_filtered ("-");
+}
+\f
 void
 breakpoints_changed ()
 {
@@ -52,7 +66,9 @@ void
 annotate_starting ()
 {
   if (annotation_level > 1)
-    printf_filtered ("\n\032\032starting\n");
+    {
+      printf_filtered ("\n\032\032starting\n");
+    }
 }
 
 void
@@ -188,7 +204,7 @@ void
 annotate_field_end ()
 {
   if (annotation_level > 1)
-    printf_filtered ("\n\032\032field-value\n");
+    printf_filtered ("\n\032\032field-end\n");
 }
 \f
 void
@@ -506,3 +522,19 @@ annotate_array_section_end ()
     printf_filtered ("\n\032\032array-section-end\n");
 }
 
+static void
+breakpoint_changed (b)
+     struct breakpoint *b;
+{
+  breakpoints_changed ();
+}
+
+void
+_initialize_annotate ()
+{
+  if (annotation_level > 1)
+    {
+      delete_breakpoint_hook = breakpoint_changed;
+      modify_breakpoint_hook = breakpoint_changed;
+    }
+}
This page took 0.024436 seconds and 4 git commands to generate.