]> sourceware.org Git - systemtap.git/commitdiff
2005-08-24 Martin Hunt <hunt@redhat.com>
authorhunt <hunt>
Wed, 24 Aug 2005 16:29:46 +0000 (16:29 +0000)
committerhunt <hunt>
Wed, 24 Aug 2005 16:29:46 +0000 (16:29 +0000)
* io.c (_stp_vlog): Send warnings and errors to STP_OOB_DATA.

runtime/ChangeLog
runtime/io.c

index ec40effc5917082c70f567374ed8e8e6d0d61605..4aaf08082cd5511ac4355419328dd4aa44cdf43a 100644 (file)
@@ -1,3 +1,7 @@
+2005-08-24  Martin Hunt  <hunt@redhat.com>
+
+       * io.c (_stp_vlog): Send warnings and errors to STP_OOB_DATA.
+
 2005-08-23  Martin Hunt  <hunt@redhat.com>
 
        * runtime.h: Add a prototype for _stp_dbug().
index f4f042a854e067c2711f7bf147923f7fd981dcbe..1e3d51e44f2530b177b39b459cd2d8520a9d3387 100644 (file)
@@ -57,12 +57,12 @@ static void _stp_vlog (enum code type, char *func, int line, const char *fmt, va
                
 #ifdef STP_RELAYFS
                if (type != DBUG)
-                       _stp_write(STP_REALTIME_DATA, buf, start + num + 1);
+                       _stp_write(STP_OOB_DATA, buf, start + num + 1);
                _stp_string_cat_cstr(_stp_stdout,buf);
                _stp_print_flush();
 #else
                if (type != DBUG)
-                       _stp_write(STP_REALTIME_DATA, buf, start + num + 1);
+                       _stp_write(STP_OOB_DATA, buf, start + num + 1);
                else {
                        _stp_string_cat_cstr(_stp_stdout,buf);
                        _stp_print_flush();
This page took 0.030584 seconds and 5 git commands to generate.