summaryrefslogtreecommitdiffstats
path: root/tapsets.cxx
diff options
context:
space:
mode:
authorDavid Smith <dsmith@redhat.com>2008-04-22 08:14:05 -0500
committerDavid Smith <dsmith@redhat.com>2008-04-22 08:23:24 -0500
commitcdfbd0e0ebd557ff5002c7e67d2681e9e70e1b38 (patch)
tree34c01cb09bc4047df6af72ff1d8c5def7ae0b8e8 /tapsets.cxx
parentddbffc50fb36937a162aa1a5ca144b242e207fd7 (diff)
downloadsystemtap-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.
Diffstat (limited to 'tapsets.cxx')
-rw-r--r--tapsets.cxx3
1 files changed, 0 insertions, 3 deletions
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) << "}";
}