On Fri, Aug 12, 2005 at 07:11:24AM -0700, Sigbjorn Finne wrote:
> 
> "Simon Marlow" <[EMAIL PROTECTED]> writes:
> >
> ...
> >No - read() can always return less than the requested amount of data,
> >even when not in O_NONBLOCK mode.
> >
> 
> Hmm, care to give some details as to why you equate "can" with
> "always will" on all platforms?

Yes. this is guarenteed behavior on pretty much every system. A whole
lot of things would break if it were otherwise. if select says a file
descriptor can be written to or read from then the next write or read call is
guarenteed to not block, no matter what its size. (you just may get a
short read or write) 

        John

-- 
John Meacham - ⑆repetae.net⑆john⑈ 
_______________________________________________
Glasgow-haskell-bugs mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs

Reply via email to