From 30431f0b3a07f49177b6f3d4eb68f403b46bd0b0 Mon Sep 17 00:00:00 2001 From: simonmar Date: Wed, 24 Sep 2003 10:41:11 +0000 Subject: [PATCH] [project @ 2003-09-24 10:41:11 by simonmar] Add non-blocking versions of hGetBuf, hPutBuf. --- System/IO.hs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/System/IO.hs b/System/IO.hs index f3e0212..23e7428 100644 --- a/System/IO.hs +++ b/System/IO.hs @@ -149,6 +149,8 @@ module System.IO ( hSetBinaryMode, -- :: Handle -> Bool -> IO () hPutBuf, -- :: Handle -> Ptr a -> Int -> IO () hGetBuf, -- :: Handle -> Ptr a -> Int -> IO Int + hPutBufNonBlocking, -- :: Handle -> Ptr a -> Int -> IO Int + hGetBufNonBlocking, -- :: Handle -> Ptr a -> Int -> IO Int #endif module System.IO.Error, -- 1.7.10.4