diff options
author | hunt <hunt> | 2005-07-01 19:40:50 +0000 |
---|---|---|
committer | hunt <hunt> | 2005-07-01 19:40:50 +0000 |
commit | ba36c3ee7f3c807ac07b04bb181a742eae865a60 (patch) | |
tree | 1e612d5b70055aa13c84aae40a9e54f349156394 /runtime/io.c | |
parent | 07a4738f117eca68c7076ff09b7f93230ab9fedd (diff) | |
download | systemtap-steved-ba36c3ee7f3c807ac07b04bb181a742eae865a60.tar.gz systemtap-steved-ba36c3ee7f3c807ac07b04bb181a742eae865a60.tar.xz systemtap-steved-ba36c3ee7f3c807ac07b04bb181a742eae865a60.zip |
2005-07-01 Martin Hunt <hunt@redhat.com>
* string.c (_stp_string_init): CAll stp_error() on bad
init.
* list.c (_stp_list_clear): Call _stp_warn().
Diffstat (limited to 'runtime/io.c')
-rw-r--r-- | runtime/io.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/io.c b/runtime/io.c index dd74eea8..d59b511a 100644 --- a/runtime/io.c +++ b/runtime/io.c @@ -12,6 +12,9 @@ #include "transport/transport.c" +void _stp_print_flush (void); +void _stp_string_cat_cstr (String str1, const char *str2); + /** @file io.c * @brief I/O for printing warnings, errors and debug messages. */ @@ -28,9 +31,6 @@ static char _stp_lbuf[NR_CPUS][STP_LOG_BUF_LEN + 1]; enum code { INFO=0, WARN, ERROR, DBUG }; -void _stp_print_flush (void); -void _stp_string_cat_cstr (String str1, const char *str2); - static void _stp_vlog (enum code type, char *func, int line, const char *fmt, va_list args) { int num, ret; |