]> sourceware.org Git - systemtap.git/commitdiff
Mark ucontext tapset functions EXPERIMENTAL.
authorMark Wielaard <mjw@redhat.com>
Tue, 21 Apr 2009 17:57:02 +0000 (19:57 +0200)
committerMark Wielaard <mjw@redhat.com>
Tue, 21 Apr 2009 17:57:02 +0000 (19:57 +0200)
* tapset/ucontext-symbols.stp (usymname, usymdata, print_ustack):
  mark EXPERIMENTAL.
* tapset/ucontext-unwind.stp (print_ubacktrace, ubacktrace): Likewise.

tapset/ucontext-symbols.stp
tapset/ucontext-unwind.stp

index 2e7ad25b668dcc7419d18e8a56af9cee98f847a3..5502f5cd65977646c4aa225b07c80250a23e8553 100644 (file)
@@ -23,7 +23,7 @@
 %}
 
 /**
- * sfunction usymname - Return the symbol of an address in the current task.
+ * sfunction usymname - Return the symbol of an address in the current task. EXPERIMENTAL!
  * @addr: The address to translate.
  *
  * Description: Returns the (function) symbol name associated with the
@@ -36,7 +36,7 @@ function usymname:string (addr: long) %{ /* pure */
 %}
 
 /**
- * sfunction usymdata - Return the symbol and module offset of an address.
+ * sfunction usymdata - Return the symbol and module offset of an address. EXPERIMENTAL!
  * @addr: The address to translate.
  *
  * Description: Returns the (function) symbol name associated with the
@@ -52,7 +52,7 @@ function usymdata:string (addr: long) %{ /* pure */
 %}
 
 /**
- * sfunction print_ustack - Print out stack for the current task from string.
+ * sfunction print_ustack - Print out stack for the current task from string. EXPERIMENTAL!
  * @stk: String with list of hexidecimal addresses for the current task.
  *
  *  Perform a symbolic lookup of the addresses in the given string,
index b70f6da764b3610c0d210c7a7c4255fd579b9261..0801f1c92c514d083b1f29de53d9e8e6be6ea48e 100644 (file)
@@ -19,7 +19,7 @@
 %}
 
 /**
- * sfunction print_ubacktrace - Print stack back trace for current task.
+ * sfunction print_ubacktrace - Print stack back trace for current task. EXPERIMENTAL!
  *
  *  Equivalent to <command>print_ustack(ubacktrace())</command>, 
  *  except that deeper stack nesting may be supported.  Return nothing.
@@ -34,7 +34,7 @@ function print_ubacktrace () %{
 %}
 
 /**
- * sfunction ubacktrace - Hex backtrace of current task stack.
+ * sfunction ubacktrace - Hex backtrace of current task stack. EXPERIMENTAL!
  *
  *  Return a string of hex addresses that are a backtrace of the 
  *  stack of the current task.  Output may be truncated as per maximum
This page took 0.032005 seconds and 5 git commands to generate.