diff options
author | David Smith <dsmith@redhat.com> | 2008-04-22 08:14:05 -0500 |
---|---|---|
committer | David Smith <dsmith@redhat.com> | 2008-04-22 08:23:24 -0500 |
commit | cdfbd0e0ebd557ff5002c7e67d2681e9e70e1b38 (patch) | |
tree | 34c01cb09bc4047df6af72ff1d8c5def7ae0b8e8 | |
parent | ddbffc50fb36937a162aa1a5ca144b242e207fd7 (diff) | |
download | systemtap-steved-cdfbd0e0ebd557ff5002c7e67d2681e9e70e1b38.tar.gz systemtap-steved-cdfbd0e0ebd557ff5002c7e67d2681e9e70e1b38.tar.xz systemtap-steved-cdfbd0e0ebd557ff5002c7e67d2681e9e70e1b38.zip |
Removed debug statements.
2008-04-22 David Smith <dsmith@redhat.com>
* tapsets.cxx (utrace_derived_probe_group::emit_module_decls):
Removed debug statements.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | tapsets.cxx | 3 |
2 files changed, 5 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2008-04-22 David Smith <dsmith@redhat.com> + + * tapsets.cxx (utrace_derived_probe_group::emit_module_decls): + Removed debug statements. + 2008-04-18 David Smith <dsmith@redhat.com> * tapsets.cxx (struct utrace_builder): Added exec probes. diff --git a/tapsets.cxx b/tapsets.cxx index 35d25172..764f678e 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -4730,7 +4730,6 @@ utrace_derived_probe_group::emit_module_decls (systemtap_session& s) s.op->newline() << "struct stap_utrace_probe *p = container_of(tgt, struct stap_utrace_probe, tgt);"; s.op->newline() << "struct utrace_attached_engine *engine;"; - s.op->newline() << "_stp_dbug(__FUNCTION__, __LINE__, \"%d: %s\\n\", register_p, p->pp);"; s.op->newline() << "if (register_p) {"; s.op->indent(1); @@ -4746,7 +4745,6 @@ utrace_derived_probe_group::emit_module_decls (systemtap_session& s) { s.op->newline() << "case UTRACE_EVENT(EXEC):"; s.op->indent(1); - s.op->newline() << "_stp_dbug(__FUNCTION__, __LINE__, \"%s\\n\", p->pp);"; s.op->newline() << "stap_utrace_probe_handler(tsk, p);"; s.op->newline() << "break;"; s.op->indent(-1); @@ -4802,7 +4800,6 @@ utrace_derived_probe_group::emit_module_decls (systemtap_session& s) { s.op->newline() << "if (p->flags == UTRACE_EVENT(DEATH)) {"; s.op->indent(1); - s.op->newline() << "_stp_dbug(__FUNCTION__, __LINE__, \"%s\\n\", p->pp);"; s.op->newline() << "stap_utrace_probe_handler(tsk, p);"; s.op->newline(-1) << "}"; } |