diff options
author | Keith Seitz <keiths@redhat.com> | 2001-06-14 17:09:36 +0000 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2001-06-14 17:09:36 +0000 |
commit | 578c1fe6f0260a8a57947019c794dfe618f4a9b3 (patch) | |
tree | d6ff500420fd2d075bcc32733e4bacae2ff62056 | |
parent | 0b317b0807d2a4981b050993d37d7e59b52f39d2 (diff) | |
download | gdb-578c1fe6f0260a8a57947019c794dfe618f4a9b3.zip gdb-578c1fe6f0260a8a57947019c794dfe618f4a9b3.tar.gz gdb-578c1fe6f0260a8a57947019c794dfe618f4a9b3.tar.bz2 |
* tracepoint.c (trace_command): We now have tracepoint
events. Get rid of those ugly hooks.
(tracepoint_operation): Likewise.
(trace_pass_command): Likewise.
-rw-r--r-- | gdb/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/tracepoint.c | 14 |
2 files changed, 7 insertions, 14 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1998a20..164eef9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2001-06-14 Keith Seitz <keiths@redhat.com> + + * tracepoint.c (trace_command): We now have tracepoint + events. Get rid of those ugly hooks. + (tracepoint_operation): Likewise. + (trace_pass_command): Likewise. + 2001-06-13 Michael Snyder <msnyder@redhat.com> * gdbthread.h (struct thread_info): Add new fields: diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index 9a83322..fbe377e 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -424,10 +424,6 @@ trace_command (char *arg, int from_tty) t->addr_string = savestring (addr_start, addr_end - addr_start); trace_mention (t); - - /* Let the UI know of any additions */ - if (create_tracepoint_hook) - create_tracepoint_hook (t); } if (sals.nelts > 1) @@ -574,14 +570,10 @@ tracepoint_operation (struct tracepoint *t, int from_tty, { case enable_op: 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: @@ -596,10 +588,6 @@ tracepoint_operation (struct tracepoint *t, int from_tty, break; } - /* Let the UI know of any deletions */ - if (delete_tracepoint_hook) - delete_tracepoint_hook (t); - if (t->addr_string) xfree (t->addr_string); if (t->source_file) @@ -745,8 +733,6 @@ trace_pass_command (char *args, int from_tty) if (t1 == (struct tracepoint *) -1 || t1 == t2) { 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", |