From 5ab5249201bf2a037876549ab7da408b469f9630 Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 18 Sep 2001 08:32:11 +0000 Subject: [PATCH] [project @ 2001-09-18 08:32:11 by simonmar] - export hGetcBuffered, which is used by the compiler (StringBuffer) - don't export commitBuffer. --- ghc/lib/std/PrelIO.hsc | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/ghc/lib/std/PrelIO.hsc b/ghc/lib/std/PrelIO.hsc index 76cd36d..67f909b 100644 --- a/ghc/lib/std/PrelIO.hsc +++ b/ghc/lib/std/PrelIO.hsc @@ -3,7 +3,7 @@ #undef DEBUG_DUMP -- ----------------------------------------------------------------------------- --- $Id: PrelIO.hsc,v 1.15 2001/09/17 16:51:55 simonmar Exp $ +-- $Id: PrelIO.hsc,v 1.16 2001/09/18 08:32:11 simonmar Exp $ -- -- (c) The University of Glasgow, 1992-2001 -- @@ -19,7 +19,8 @@ module PrelIO ( interact, readFile, writeFile, appendFile, readLn, readIO, hReady, hWaitForInput, hGetChar, hGetLine, hGetContents, hPutChar, hPutStr, hPutStrLn, hPrint, - commitBuffer, commitBuffer' + commitBuffer', -- hack, see below + hGetcBuffered, -- needed by ghc/compiler/utils/StringBuffer.lhs ) where #include "HsStd.h" @@ -567,9 +568,11 @@ commitBuffer hdl raw sz@(I## _) count@(I## _) flush release = do -- past the \handle, which is really a pessimisation in this case because -- that lambda is a one-shot lambda. -- --- Don't forget to export the function, to stop it being inlined too. +-- Don't forget to export the function, to stop it being inlined too +-- (this appears to be better than NOINLINE, because the strictness +-- analyser still gets to worker-wrapper it). -- --- This hack is a fairly big win for hPutStr performance. +-- This hack is a fairly big win for hPutStr performance. --SDM 18/9/2001 -- commitBuffer' hdl raw sz@(I## _) count@(I## _) flush release handle_@Handle__{ haFD=fd, haBuffer=ref, haBuffers=spare_buf_ref } = do -- 1.7.10.4