diff src/os/unix/ngx_socket.c @ 253:b6793bc5034b

nginx-0.0.2-2004-02-09-10:46:43 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 09 Feb 2004 07:46:43 +0000
parents 8dee38ea9117
children 55e496a8ece3
line wrap: on
line diff
--- a/src/os/unix/ngx_socket.c
+++ b/src/os/unix/ngx_socket.c
@@ -4,12 +4,13 @@
 
 
 /*
-   ioctl(FIONBIO) set blocking mode with one syscall only while
-   fcntl(F_SETFL, ~O_NONBLOCK) need to know previous state
-   using fcntl(F_GETFL).
-
-   ioctl() and fcntl() are syscalls on FreeBSD, Solaris 7/8 and Linux
-*/
+ * ioctl(FIONBIO) sets a blocking mode with the single syscall
+ * while fcntl(F_SETFL, ~O_NONBLOCK) needs to learn before
+ * a previous state using fcntl(F_GETFL).
+ *
+ * ioctl() and fcntl() are syscalls on at least FreeBSD 2.x, Linux 2.2
+ * and Solaris 7
+ */
 
 
 #if (HAVE_FIONBIO)