From d072ec9d384f4f6072317e530b42a834f0982921 Mon Sep 17 00:00:00 2001 From: hunt Date: Wed, 24 Aug 2005 16:29:46 +0000 Subject: [PATCH] 2005-08-24 Martin Hunt * io.c (_stp_vlog): Send warnings and errors to STP_OOB_DATA. --- runtime/ChangeLog | 4 ++++ runtime/io.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/runtime/ChangeLog b/runtime/ChangeLog index ec40effc5..4aaf08082 100644 --- a/runtime/ChangeLog +++ b/runtime/ChangeLog @@ -1,3 +1,7 @@ +2005-08-24 Martin Hunt + + * io.c (_stp_vlog): Send warnings and errors to STP_OOB_DATA. + 2005-08-23 Martin Hunt * runtime.h: Add a prototype for _stp_dbug(). diff --git a/runtime/io.c b/runtime/io.c index f4f042a85..1e3d51e44 100644 --- a/runtime/io.c +++ b/runtime/io.c @@ -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(); -- 2.43.5