comparison src/event/ngx_event.h @ 280:7c7183b3ea8b

nginx-0.0.2-2004-03-05-11:34:24 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 05 Mar 2004 08:34:24 +0000
parents a2d1ccc96111
children 87e73f067470
comparison
equal deleted inserted replaced
279:b79f021a644a 280:7c7183b3ea8b
120 * read: bytes to read when event is ready 120 * read: bytes to read when event is ready
121 * or lowat when event is set with NGX_LOWAT_EVENT flag 121 * or lowat when event is set with NGX_LOWAT_EVENT flag
122 * write: available space in buffer when event is ready 122 * write: available space in buffer when event is ready
123 * or lowat when event is set with NGX_LOWAT_EVENT flag 123 * or lowat when event is set with NGX_LOWAT_EVENT flag
124 * 124 *
125 * iocp: TODO
126 *
125 * otherwise: 127 * otherwise:
126 * accept: 1 if accept many, 0 otherwise 128 * accept: 1 if accept many, 0 otherwise
127 */ 129 */
128 130
129 #if (HAVE_KQUEUE) 131 #if (HAVE_KQUEUE) || (HAVE_IOCP)
130 int available; 132 int available;
131 #else 133 #else
132 unsigned short available:1; 134 unsigned short available:1;
133 #endif 135 #endif
134 136