summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'runtime')
-rw-r--r--runtime/user/ChangeLog5
-rw-r--r--runtime/user/io.c8
-rw-r--r--runtime/user/print.c2
3 files changed, 10 insertions, 5 deletions
diff --git a/runtime/user/ChangeLog b/runtime/user/ChangeLog
index e6c5ab32..90041891 100644
--- a/runtime/user/ChangeLog
+++ b/runtime/user/ChangeLog
@@ -1,3 +1,8 @@
+2006-09-26 David Smith <dsmith@redhat.com>
+
+ * io.c: Changed 'stpd' references to 'staprun'.
+ * print.c: Ditto.
+
2006-03-30 Martin Hunt <hunt@redhat.com>
* emul.h (kmalloc_node): New.
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.
diff --git a/runtime/user/print.c b/runtime/user/print.c
index 261e191d..acc938b9 100644
--- a/runtime/user/print.c
+++ b/runtime/user/print.c
@@ -12,7 +12,7 @@
* _stp_print_flush() is called.
*
* The reason to do this is to allow multiple small prints to be combined then
- * timestamped and sent together to stpd. It could flush automatically on newlines,
+ * timestamped and sent together to staprun. It could flush automatically on newlines,
* but what about stack traces which span many lines? So try this and see how it works for us.
* @{
*/