diff options
author | hunt <hunt> | 2005-11-18 21:57:30 +0000 |
---|---|---|
committer | hunt <hunt> | 2005-11-18 21:57:30 +0000 |
commit | b1f3e72e9fb1f41b0dbb5be20506e375fcf89561 (patch) | |
tree | d6ddcc2b52307f5b0c8e8a143311b17aa114a82f /stapfuncs.5.in | |
parent | d02548c0925a02dd0af64a9dc13cce9e84d87b4f (diff) | |
download | systemtap-steved-b1f3e72e9fb1f41b0dbb5be20506e375fcf89561.tar.gz systemtap-steved-b1f3e72e9fb1f41b0dbb5be20506e375fcf89561.tar.xz systemtap-steved-b1f3e72e9fb1f41b0dbb5be20506e375fcf89561.zip |
2005-11-18 Martin Hunt <hunt@redhat.com>
PR 1837
* testsuite/buildko/one.stp: Replace printk.
* testsuite/buildok/one.stp: Ditto.
* testsuite/buildok/two.stp: Ditto.
* testsuite/semko/fifteen.stp: Ditto.
* testsuite/semko/fourteen.stp: Ditto.
* testsuite/semko/thirteen.stp: Ditto.
* testsuite/transok/eight.stp: Ditto.
* testsuite/transok/seven.stp: Ditto.
* testsuite/transok/six.stp: Ditto.
* tapsets.cxx (*::emit_probe_entries): Replace printk() calls
with _stp_warn().
* stap.1.in: Replace printk with printf in example.
* stapfuncs.5.in: Remove docs for printk and add for
print and printf.
* tapset/logging.stp (printk): Deleted.
Diffstat (limited to 'stapfuncs.5.in')
-rw-r--r-- | stapfuncs.5.in | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/stapfuncs.5.in b/stapfuncs.5.in index 72d048eb..806a0906 100644 --- a/stapfuncs.5.in +++ b/stapfuncs.5.in @@ -26,18 +26,19 @@ and take no parameters. .SS LOGGING .TP -printk:unknown (msg:string) -Log the given string to the kernel's printk buffer, at KERN_INFO severity. -Append an implicit end-of-line. +log:unknown (msg:string) +Log the given string to the common trace buffer. Append an implicit +end-of-line. .TP print:unknown (msg:string) -Print the given string to the common trace buffer. +print:unknown (k:long) +Print the given integer or string to the common trace buffer. .TP -log:unknown (msg:string) -Log the given string to the common trace buffer. Append an implicit -end-of-line. +printf:unknown (fmt:string, ...) +Like the C printf, except valid types are limited to string ("%s") +and integer ("%d"). .TP warn:unknown (msg:string) |