diff options
author | Josh Stone <jistone@redhat.com> | 2009-02-18 17:59:14 -0800 |
---|---|---|
committer | Josh Stone <jistone@redhat.com> | 2009-02-18 17:59:54 -0800 |
commit | 60ea929119a82b462bc32dd42a48972ee04420e0 (patch) | |
tree | e069aa432873f6f300445278f437a1d6a73e52b5 /NEWS | |
parent | 38b925085d04328c9c0511fc6a7de95a64867835 (diff) | |
download | systemtap-steved-60ea929119a82b462bc32dd42a48972ee04420e0.tar.gz systemtap-steved-60ea929119a82b462bc32dd42a48972ee04420e0.tar.xz systemtap-steved-60ea929119a82b462bc32dd42a48972ee04420e0.zip |
Add NEWS and manpage info about @cast()
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 |