diff options
Diffstat (limited to 'runtime/user/io.c')
-rw-r--r-- | runtime/user/io.c | 8 |
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. |