summaryrefslogtreecommitdiffstats
path: root/runtime/io.c
diff options
context:
space:
mode:
authordsmith <dsmith>2006-09-26 21:39:52 +0000
committerdsmith <dsmith>2006-09-26 21:39:52 +0000
commit3ae203b24203fc169e39f7b733f11038aafa80ef (patch)
tree50ff792a57834d21fba71791276dd7de519bac13 /runtime/io.c
parentcc6dac44fe06855e8d1f69f9582ba5525869c4ab (diff)
downloadsystemtap-steved-3ae203b24203fc169e39f7b733f11038aafa80ef.tar.gz
systemtap-steved-3ae203b24203fc169e39f7b733f11038aafa80ef.tar.xz
systemtap-steved-3ae203b24203fc169e39f7b733f11038aafa80ef.zip
2006-09-26 David Smith <dsmith@redhat.com>
* README: Changed 'stpd' references to 'staprun'. * README.doc: Ditto. * TODO: Ditto. * io.c: Ditto. * print.c: Ditto. * runtime.h: Ditto. * bench2/bench.rb: Ditto.
Diffstat (limited to 'runtime/io.c')
-rw-r--r--runtime/io.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/io.c b/runtime/io.c
index 846a83d8..cee9acf1 100644
--- a/runtime/io.c
+++ b/runtime/io.c
@@ -67,7 +67,7 @@ static void _stp_vlog (enum code type, char *func, int line, const char *fmt, va
}
/** 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()
@@ -85,7 +85,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.
@@ -100,7 +100,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()
@@ -113,7 +113,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.
@@ -133,7 +133,7 @@ void _stp_error (const char *fmt, ...)
/** Prints error message.
- * 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.