summaryrefslogtreecommitdiffstats
path: root/runtime/user/io.c
diff options
context:
space:
mode:
authordsmith <dsmith>2006-09-26 21:37:39 +0000
committerdsmith <dsmith>2006-09-26 21:37:39 +0000
commit5b855b71330c5568385ce4c6e8eeb01ea2090527 (patch)
tree893de405afc08252ae4181f0040292c3c8083fb6 /runtime/user/io.c
parent2d323e45a77a446753d749ff5038ff548a2c7537 (diff)
downloadsystemtap-steved-5b855b71330c5568385ce4c6e8eeb01ea2090527.tar.gz
systemtap-steved-5b855b71330c5568385ce4c6e8eeb01ea2090527.tar.xz
systemtap-steved-5b855b71330c5568385ce4c6e8eeb01ea2090527.zip
2006-09-26 David Smith <dsmith@redhat.com>
* io.c: Changed 'stpd' references to 'staprun'. * print.c: Ditto.
Diffstat (limited to 'runtime/user/io.c')
-rw-r--r--runtime/user/io.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/user/io.c b/runtime/user/io.c
index ff4a06a7..ecc3d050 100644
--- a/runtime/user/io.c
+++ b/runtime/user/io.c
@@ -12,7 +12,7 @@
int vprintf(const char *format, va_list ap);
/** Logs Data.
- * This function sends the message immediately to stpd. It
+ * This function sends the message immediately to staprun. It
* will also be sent over the bulk transport (relayfs) if it is
* being used. If the last character is not a newline, then one
* is added. This function is not as efficient as _stp_printf()
@@ -30,7 +30,7 @@ void _stp_log (const char *fmt, ...)
}
/** Prints warning.
- * This function sends a warning message immediately to stpd. It
+ * This function sends a warning message immediately to staprun. It
* will also be sent over the bulk transport (relayfs) if it is
* being used. If the last character is not a newline, then one
* is added.
@@ -45,7 +45,7 @@ void _stp_warn (const char *fmt, ...)
}
/** Exits and unloads the module.
- * This function sends a signal to stpd to tell it to
+ * This function sends a signal to staprun to tell it to
* unload the module and exit. The module will not be
* unloaded until after the current probe returns.
* @note Be careful to not treat this like the Linux exit()
@@ -58,7 +58,7 @@ void _stp_exit (void)
}
/** Prints error message and exits.
- * This function sends an error message immediately to stpd. It
+ * This function sends an error message immediately to staprun. It
* will also be sent over the bulk transport (relayfs) if it is
* being used. If the last character is not a newline, then one
* is added.