comparison src/event/ngx_event.h @ 374:213f17e9f776

nginx-0.0.7-2004-07-02-09:47:00 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 02 Jul 2004 05:47:00 +0000
parents 54f76b0b8dca
children 744ccb59062d
comparison
equal deleted inserted replaced
373:018569a8f09c 374:213f17e9f776
153 153
154 #endif 154 #endif
155 155
156 156
157 #if (NGX_THREADS) 157 #if (NGX_THREADS)
158
158 ngx_atomic_t *lock; 159 ngx_atomic_t *lock;
160
161 unsigned locked:1;
162
163 unsigned posted_ready:1;
164 unsigned posted_timedout:1;
165 unsigned posted_eof:1;
166
167 #if (HAVE_KQUEUE)
168 /* the pending errno reported by kqueue */
169 int posted_errno;
170 #endif
171
172 #if (HAVE_KQUEUE) || (HAVE_IOCP)
173 int posted_available;
174 #else
175 unsigned posted_available:1;
176 #endif
177
159 #endif 178 #endif
160 179
161 180
162 #if 0 181 #if 0
163 182