From: sof Date: Tue, 1 Apr 2003 15:40:27 +0000 (+0000) Subject: [project @ 2003-04-01 15:40:27 by sof] X-Git-Tag: Approx_11550_changesets_converted~996 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=a2c4ea5225783e816f397687e1c15282421d3027;p=ghc-hetmet.git [project @ 2003-04-01 15:40:27 by sof] comment update --- diff --git a/ghc/rts/RtsUtils.c b/ghc/rts/RtsUtils.c index 5817a95..8f6579c 100644 --- a/ghc/rts/RtsUtils.c +++ b/ghc/rts/RtsUtils.c @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: RtsUtils.c,v 1.33 2003/03/31 19:19:34 sof Exp $ + * $Id: RtsUtils.c,v 1.34 2003/04/01 15:40:27 sof Exp $ * * (c) The GHC Team, 1998-2002 * @@ -252,7 +252,9 @@ setNonBlockingFd(int fd) fcntl(fd, F_SETFL, fd_flags | O_NONBLOCK); } #else -/* Don't support non-blocking FDs (yet) on mingw */ +/* Stub defns -- async / non-blocking IO is not done + * via O_NONBLOCK and select() under Win32. + */ void resetNonBlockingFd(int fd STG_UNUSED) {} void setNonBlockingFd(int fd STG_UNUSED) {} #endif