blob: 4f41ae790acb4a3b5ac1dba6cfc210aed93c7322 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _NGX_KQUEUE_MODULE_H_INCLUDED_
#define _NGX_KQUEUE_MODULE_H_INCLUDED_
typedef struct {
int changes;
int events;
} ngx_kqueue_conf_t;
extern int ngx_kqueue;
#endif /* _NGX_KQUEUE_MODULE_H_INCLUDED_ */
|