Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2003-05-12 19:52:24 +0400
committerIgor Sysoev <igor@sysoev.ru>2003-05-12 19:52:24 +0400
commit6b863e353d54420c323d67f86aad0b90ba04e316 (patch)
tree51d13ab529d2605be3995333d71344c917c5c4f4 /src/event/ngx_event.h
parent4fe262b6821a461b3dbb3d6bfd05a8f713157524 (diff)
nginx-0.0.1-2003-05-12-19:52:24 import
Diffstat (limited to 'src/event/ngx_event.h')
-rw-r--r--src/event/ngx_event.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/event/ngx_event.h b/src/event/ngx_event.h
index c3cc9079e..bc8cae52e 100644
--- a/src/event/ngx_event.h
+++ b/src/event/ngx_event.h
@@ -63,7 +63,9 @@ struct ngx_event_s {
#endif
unsigned write:1;
- unsigned first:1;
+ unsigned instance:1; /* used to detect stale events in kqueue,
+ rt signals and epoll */
+
unsigned active:1;
unsigned ready:1;
unsigned timedout:1;
@@ -114,6 +116,7 @@ struct ngx_event_s {
#endif
};
+
typedef enum {
NGX_SELECT_EVENT_N = 0,
#if (HAVE_POLL)