comparison src/event/modules/ngx_poll_module.c @ 6922:a72886067bbb

Added missing static specifiers.
author Eran Kornblau <erankor@gmail.com>
date Thu, 02 Mar 2017 08:46:00 -0500
parents 75dbab4ea930
children e0e636ab10be
comparison
equal deleted inserted replaced
6921:7fca6f60d5ca 6922:a72886067bbb
23 23
24 static struct pollfd *event_list; 24 static struct pollfd *event_list;
25 static ngx_uint_t nevents; 25 static ngx_uint_t nevents;
26 26
27 27
28 static ngx_str_t poll_name = ngx_string("poll"); 28 static ngx_str_t poll_name = ngx_string("poll");
29 29
30 ngx_event_module_t ngx_poll_module_ctx = { 30 static ngx_event_module_t ngx_poll_module_ctx = {
31 &poll_name, 31 &poll_name,
32 NULL, /* create configuration */ 32 NULL, /* create configuration */
33 ngx_poll_init_conf, /* init configuration */ 33 ngx_poll_init_conf, /* init configuration */
34 34
35 { 35 {