From a2c4ea5225783e816f397687e1c15282421d3027 Mon Sep 17 00:00:00 2001 From: sof Date: Tue, 1 Apr 2003 15:40:27 +0000 Subject: [PATCH 1/1] [project @ 2003-04-01 15:40:27 by sof] comment update --- ghc/rts/RtsUtils.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 -- 1.7.10.4