summaryrefslogtreecommitdiffstats
path: root/runtime/sym.c
diff options
context:
space:
mode:
authorhunt <hunt>2005-04-07 21:48:47 +0000
committerhunt <hunt>2005-04-07 21:48:47 +0000
commit655ee2825121e149a9976e562946892efb20aea1 (patch)
tree91b9b4cc46aeee50e9d789689bea0b96e11ceba1 /runtime/sym.c
parent3d4bc8bea6b45893bd4b49f44df26bd602b4cba5 (diff)
downloadsystemtap-steved-655ee2825121e149a9976e562946892efb20aea1.tar.gz
systemtap-steved-655ee2825121e149a9976e562946892efb20aea1.tar.xz
systemtap-steved-655ee2825121e149a9976e562946892efb20aea1.zip
*** empty log message ***
Diffstat (limited to 'runtime/sym.c')
-rw-r--r--runtime/sym.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/sym.c b/runtime/sym.c
index 85662954..1eec0d1d 100644
--- a/runtime/sym.c
+++ b/runtime/sym.c
@@ -20,11 +20,11 @@ static const char * (*_stp_kallsyms_lookup)(unsigned long addr,
char **modname, char *namebuf)=(void *)KALLSYMS_LOOKUP;
-/** Print addresses symbolically into a string
+/** Write addresses symbolically into a String
+ * @param str String
* @param address The address to lookup.
- * @note Symbolic lookups should not be done within
+ * @note Symbolic lookups should not normally be done within
* a probe because it is too time-consuming. Use at module exit time.
- * @note Uses scbuf.
*/
String _stp_symbol_sprint (String str, unsigned long address)
@@ -45,9 +45,9 @@ String _stp_symbol_sprint (String str, unsigned long address)
}
-/** Print addresses symbolically to the trace buffer.
+/** Print addresses symbolically to the print buffer.
* @param address The address to lookup.
- * @note Symbolic lookups should not be done within
+ * @note Symbolic lookups should not normally be done within
* a probe because it is too time-consuming. Use at module exit time.
*/