diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | tapset/logging.stp | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2005-12-12 Will Cohen <wcohen@redhat.com> + + * tapset/logging.stp (function_exit): Make sure systemtap probes + stop collection additional data. + 2005-12-12 Frank Ch. Eigler <fche@redhat.com> Fix parse tree pretty-printer. diff --git a/tapset/logging.stp b/tapset/logging.stp index d0222a86..54f4c272 100644 --- a/tapset/logging.stp +++ b/tapset/logging.stp @@ -21,6 +21,7 @@ function warn (msg:string) %{ // NB: exit() does *not* cause immediate return from current function/probe function exit () %{ + atomic_set (&session_state, STAP_SESSION_STOPPING); _stp_exit (); %} |