From 36ef6d6a310d7a4a35a3c505d041e9fbd11125fa Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Fri, 21 Aug 2009 16:00:27 -0400 Subject: PR10544: clean up stap child process error handling * util.cxx (stap_system): Take extra verbosity value. Standardize error handling / tracing. * util.h: Corresponding changes. * buildrun.cxx, main.cxx, modsign.cxx: Update callers. --- tapsets.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tapsets.cxx') diff --git a/tapsets.cxx b/tapsets.cxx index f94bea99..ddb5696d 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -4431,7 +4431,7 @@ uprobe_derived_probe_group::emit_module_decls (systemtap_session& s) s.op->line() << " .finder = {"; if (p->pid != 0) s.op->line() << " .pid=" << p->pid; - else if (p->section == ".absolute") + else if (p->section == ".absolute") // proxy for ET_EXEC -> exec()'d program s.op->line() << " .procname=" << lex_cast_qstring(p->module) << ", "; // else ".dynamic" gets procname=0, pid=0, activating task_finder "global tracing" s.op->line() << "},"; -- cgit