nginx-0.0.7-2004-07-07-10:15:04 import
diff --git a/src/event/modules/ngx_rtsig_module.c b/src/event/modules/ngx_rtsig_module.c
index 5ab17ce..d0e7fee 100644
--- a/src/event/modules/ngx_rtsig_module.c
+++ b/src/event/modules/ngx_rtsig_module.c
@@ -105,6 +105,7 @@
NULL, /* disable an event */
ngx_rtsig_add_connection, /* add an connection */
ngx_rtsig_del_connection, /* delete an connection */
+ NULL, /* process the changes */
ngx_rtsig_process_events, /* process the events */
ngx_rtsig_init, /* init the events */
ngx_rtsig_done, /* done the events */
@@ -118,7 +119,7 @@
ngx_rtsig_commands, /* module directives */
NGX_EVENT_MODULE, /* module type */
NULL, /* init module */
- NULL /* init child */
+ NULL /* init process */
};
@@ -492,7 +493,7 @@
overflow = 1;
overflow_current = 0;
- ngx_event_actions.process = ngx_rtsig_process_overflow;
+ ngx_event_actions.process_events = ngx_rtsig_process_overflow;
return NGX_ERROR;
@@ -690,7 +691,7 @@
"rt signal queue overflow recovered");
overflow = 0;
- ngx_event_actions.process = ngx_rtsig_process_events;
+ ngx_event_actions.process_events = ngx_rtsig_process_events;
return NGX_OK;
}