[project @ 2003-09-24 10:41:11 by simonmar]
authorsimonmar <unknown>
Wed, 24 Sep 2003 10:41:11 +0000 (10:41 +0000)
committersimonmar <unknown>
Wed, 24 Sep 2003 10:41:11 +0000 (10:41 +0000)
Add non-blocking versions of hGetBuf, hPutBuf.

System/IO.hs

index f3e0212..23e7428 100644 (file)
@@ -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,