diff options
author | Josh Stone <jistone@redhat.com> | 2009-04-14 11:49:15 -0700 |
---|---|---|
committer | Josh Stone <jistone@redhat.com> | 2009-04-14 11:49:15 -0700 |
commit | 891e4fb2d5bf81b540b66b126b2ba78d1b7f459b (patch) | |
tree | f461411658f805e59ef0d5a7e84035d20a0a489d | |
parent | b9c1e0228f6c629e278820caf40870cdad285441 (diff) | |
download | systemtap-steved-891e4fb2d5bf81b540b66b126b2ba78d1b7f459b.tar.gz systemtap-steved-891e4fb2d5bf81b540b66b126b2ba78d1b7f459b.tar.xz systemtap-steved-891e4fb2d5bf81b540b66b126b2ba78d1b7f459b.zip |
Adjust NEWS indentation
-rw-r--r-- | NEWS | 28 |
1 files changed, 14 insertions, 14 deletions
@@ -7,20 +7,20 @@ * What's new in version 0.9.5 - - New probes process().insn and process().insn.block that allows - inspection of the process after each instruction or block of - instructions executed. So to count the total number of instructions - a process executes during a run do something like: - $ stap -e 'global steps; probe process("/bin/ls").insn {steps++} - probe end {printf("Total instructions: %d\n", steps);}' \ - -c /bin/ls - This feature can slow down execution of a process somewhat. - - - Systemtap probes and function man pages extracted from the tapsets - are now available under 3stap. To show the page for probe vm.pagefault - or the stap function pexecname do: - $ man 3stap vm.pagefault - $ man 3stap pexecname +- New probes process().insn and process().insn.block that allows + inspection of the process after each instruction or block of + instructions executed. So to count the total number of instructions + a process executes during a run do something like: + $ stap -e 'global steps; probe process("/bin/ls").insn {steps++} + probe end {printf("Total instructions: %d\n", steps);}' \ + -c /bin/ls + This feature can slow down execution of a process somewhat. + +- Systemtap probes and function man pages extracted from the tapsets + are now available under 3stap. To show the page for probe vm.pagefault + or the stap function pexecname do: + $ man 3stap vm.pagefault + $ man 3stap pexecname - Kernel tracepoints are now supported for probing predefined kernel events without any debuginfo. Tracepoints incur less overhead than |