diff options
author | fche <fche> | 2007-10-03 13:14:31 +0000 |
---|---|---|
committer | fche <fche> | 2007-10-03 13:14:31 +0000 |
commit | 683b62c034369da0778dbfe557f44a2ca73f76d4 (patch) | |
tree | 7aeec2c95f6e2289c67d48c946ac24589985c19b | |
parent | 94b2b2e65ad2255dd09c4939921128d13d25615d (diff) | |
download | systemtap-steved-683b62c034369da0778dbfe557f44a2ca73f76d4.tar.gz systemtap-steved-683b62c034369da0778dbfe557f44a2ca73f76d4.tar.xz systemtap-steved-683b62c034369da0778dbfe557f44a2ca73f76d4.zip |
* mention error probes
-rw-r--r-- | NEWS | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,4 +1,11 @@ -* What's new since version 0.5.15? +* What's new in version 0.6 / since version 0.5.15? + +- You can add error-handling probes to a script, which are run if a + script was stopped due to errors. In such a case, "end" probes are + not run, but "error" ones are. + + probe error { println ("oops, errors encountered; here's a report anyway") + foreach (coin in mint) { println (coin) } } - New security model. To install a systemtap kernel module, a user must be one of the following: the root user; a member of the |