+2001-06-07 Keith Seitz <keiths@redhat.com>
+
+ * tracepoint.c (tracepoint_opertation): Add ui event
+ notifications.
+ (trace_pass_command): Ditto.
+
2001-06-07 Andrew Cagney <ac131313@redhat.com>
* MAINTAINERS (Write After Approval): Note the entry criteria.
#include "remote.h"
#include "linespec.h"
#include "regcache.h"
+#include "gdb-events.h"
#include "ax.h"
#include "ax-gdb.h"
t->enabled = enabled;
if (modify_tracepoint_hook)
modify_tracepoint_hook (t);
+ tracepoint_modify_event (t->number);
break;
case disable_op:
t->enabled = disabled;
if (modify_tracepoint_hook)
modify_tracepoint_hook (t);
+ tracepoint_modify_event (t->number);
break;
case delete_op:
if (tracepoint_chain == t)
ALL_TRACEPOINTS (t2)
if (t2->next == t)
{
+ tracepoint_delete_event (t2->number);
t2->next = t->next;
break;
}
t2->pass_count = count;
if (modify_tracepoint_hook)
modify_tracepoint_hook (t2);
+ tracepoint_modify_event (t2->number);
if (from_tty)
printf_filtered ("Setting tracepoint %d's passcount to %d\n",
t2->number, count);