summaryrefslogtreecommitdiffhomepage
path: root/src/event/ngx_event.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/event/ngx_event.h')
-rw-r--r--src/event/ngx_event.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/event/ngx_event.h b/src/event/ngx_event.h
index 8c0a2f3ce..21819dc4d 100644
--- a/src/event/ngx_event.h
+++ b/src/event/ngx_event.h
@@ -34,7 +34,7 @@ struct ngx_event_s {
unsigned accept:1;
- /* used to detect the stale events in kqueue, rtsig, and epoll */
+ /* used to detect the stale events in kqueue and epoll */
unsigned instance:1;
/*
@@ -230,7 +230,7 @@ extern ngx_event_actions_t ngx_event_actions;
#define NGX_USE_LOWAT_EVENT 0x00000010
/*
- * The event filter requires to do i/o operation until EAGAIN: epoll, rtsig.
+ * The event filter requires to do i/o operation until EAGAIN: epoll.
*/
#define NGX_USE_GREEDY_EVENT 0x00000020
@@ -240,7 +240,7 @@ extern ngx_event_actions_t ngx_event_actions;
#define NGX_USE_EPOLL_EVENT 0x00000040
/*
- * No need to add or delete the event filters: rtsig.
+ * Obsolete.
*/
#define NGX_USE_RTSIG_EVENT 0x00000080
@@ -256,7 +256,7 @@ extern ngx_event_actions_t ngx_event_actions;
/*
* The event filter has no opaque data and requires file descriptors table:
- * poll, /dev/poll, rtsig.
+ * poll, /dev/poll.
*/
#define NGX_USE_FD_EVENT 0x00000400
@@ -281,7 +281,7 @@ extern ngx_event_actions_t ngx_event_actions;
/*
* The event filter is deleted just before the closing file.
* Has no meaning for select and poll.
- * kqueue, epoll, rtsig, eventport: allows to avoid explicit delete,
+ * kqueue, epoll, eventport: allows to avoid explicit delete,
* because filter automatically is deleted
* on file close,
*