From 65aeaea0bc47637030ebe4c2d3a103e1fddaa8d8 Mon Sep 17 00:00:00 2001 From: fche Date: Tue, 2 Oct 2007 17:44:25 +0000 Subject: 2007-10-02 Frank Ch. Eigler PR 5078 * tapsets.cxx (be_derived_probe): Rework to add error probe support. Emit probe description array in C for traversal by generated code. * register_standard_tapsets: Add error probes. * stapprobes.5.in: Document. * translate.cxx (emit_module_init): Handle errors that may occur during begin probes. (emit_module_exit): Use schedule() rather than cpu_relax() during shutdown synchronization wait loop. * staptree.cxx (probe::printsig): Put multiple probe points on same line. 2007-10-02 Frank Ch. Eigler PR 5078 * semok/twentysix.stp, systemtap.base/beginenderror.*: New tests. --- staptree.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'staptree.cxx') diff --git a/staptree.cxx b/staptree.cxx index a1a8211b..ccfc8a8d 100644 --- a/staptree.cxx +++ b/staptree.cxx @@ -879,7 +879,7 @@ void probe::printsig (ostream& o) const { for (unsigned i=0; i 0) o << "," << endl; + if (i > 0) o << ","; locations[i]->print (o); } } -- cgit