diff options
author | fche <fche> | 2007-10-02 17:44:25 +0000 |
---|---|---|
committer | fche <fche> | 2007-10-02 17:44:25 +0000 |
commit | 65aeaea0bc47637030ebe4c2d3a103e1fddaa8d8 (patch) | |
tree | 863f412bbf4a1f97af6fa02028bbdbbbf51a4770 /staptree.cxx | |
parent | e59475742dc0363828f05a92979d5f6fa9588dee (diff) | |
download | systemtap-steved-65aeaea0bc47637030ebe4c2d3a103e1fddaa8d8.tar.gz systemtap-steved-65aeaea0bc47637030ebe4c2d3a103e1fddaa8d8.tar.xz systemtap-steved-65aeaea0bc47637030ebe4c2d3a103e1fddaa8d8.zip |
2007-10-02 Frank Ch. Eigler <fche@redhat.com>
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 <fche@redhat.com>
PR 5078
* semok/twentysix.stp, systemtap.base/beginenderror.*: New tests.
Diffstat (limited to 'staptree.cxx')
-rw-r--r-- | staptree.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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<locations.size(); i++) { - if (i > 0) o << "," << endl; + if (i > 0) o << ","; locations[i]->print (o); } } |