From: simonmar Date: Fri, 3 Sep 2004 15:28:59 +0000 (+0000) Subject: [project @ 2004-09-03 15:28:18 by simonmar] X-Git-Tag: Initial_conversion_from_CVS_complete~1640 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=95ca6bff6fc9918203173b442192d9298ef9757a;hp=95ca6bff6fc9918203173b442192d9298ef9757a;p=ghc-hetmet.git [project @ 2004-09-03 15:28:18 by simonmar] Cleanup: all (well, most) messages from the RTS now go through the functions in RtsUtils: barf(), debugBelch() and errorBelch(). The latter two were previously called belch() and prog_belch() respectively. See the comments for the right usage of these message functions. One reason for doing this is so that we can avoid spurious uses of stdout/stderr by Haskell apps on platforms where we shouldn't be using them (eg. non-console apps on Windows). ---