diff options
author | ddomingo <ddomingo@redhat.com> | 2009-02-19 12:53:32 +1000 |
---|---|---|
committer | ddomingo <ddomingo@redhat.com> | 2009-02-19 12:53:32 +1000 |
commit | 1a0264b672725e7f770c27bb60636eb4588315b6 (patch) | |
tree | 624f9ee513aa16ba446125bac8d56cd815513916 /NEWS | |
parent | 6e21839983c9f8e112ec23205f98117705bfcd04 (diff) | |
parent | 60ea929119a82b462bc32dd42a48972ee04420e0 (diff) | |
download | systemtap-steved-1a0264b672725e7f770c27bb60636eb4588315b6.tar.gz systemtap-steved-1a0264b672725e7f770c27bb60636eb4588315b6.tar.xz systemtap-steved-1a0264b672725e7f770c27bb60636eb4588315b6.zip |
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1,5 +1,11 @@ * What's new in version 0.9 +- Typecasting is now supported using the @cast operator. A script can + define a pointer type for a "long" value, and then access type members + using the same syntax as with $target variables. For example, this will + retrieve the parent pid from a kernel task_struct: + @cast(pointer, "task_struct", "kernel")->parent->pid + - process().mark() probes are now possible to trace static user space markers put in programs with the STAP_PROBE macro using the new sys/sdt.h include file. This also provides dtrace compatible markers |