summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2009-04-14 11:49:15 -0700
committerJosh Stone <jistone@redhat.com>2009-04-14 11:49:15 -0700
commit891e4fb2d5bf81b540b66b126b2ba78d1b7f459b (patch)
treef461411658f805e59ef0d5a7e84035d20a0a489d
parentb9c1e0228f6c629e278820caf40870cdad285441 (diff)
downloadsystemtap-steved-891e4fb2d5bf81b540b66b126b2ba78d1b7f459b.tar.gz
systemtap-steved-891e4fb2d5bf81b540b66b126b2ba78d1b7f459b.tar.xz
systemtap-steved-891e4fb2d5bf81b540b66b126b2ba78d1b7f459b.zip
Adjust NEWS indentation
-rw-r--r--NEWS28
1 files changed, 14 insertions, 14 deletions
diff --git a/NEWS b/NEWS
index 96e14b70..02f00367 100644
--- a/NEWS
+++ b/NEWS
@@ -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