mirror of
https://github.com/nginx/nginx.git
synced 2025-06-07 17:52:38 +08:00
*) move small declarations in appropriate places and delete the surplus
header files *) delete insignificant comments
This commit is contained in:
parent
8e7e69e351
commit
b71610eb09
@ -7,11 +7,9 @@
|
|||||||
#include <ngx_config.h>
|
#include <ngx_config.h>
|
||||||
#include <ngx_core.h>
|
#include <ngx_core.h>
|
||||||
#include <ngx_event.h>
|
#include <ngx_event.h>
|
||||||
#include <ngx_aio.h>
|
|
||||||
|
|
||||||
#if (NGX_HAVE_KQUEUE)
|
|
||||||
#include <ngx_kqueue_module.h>
|
extern ngx_event_module_t ngx_kqueue_module_ctx;
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
static ngx_int_t ngx_aio_init(ngx_cycle_t *cycle, ngx_msec_t timer);
|
static ngx_int_t ngx_aio_init(ngx_cycle_t *cycle, ngx_msec_t timer);
|
||||||
|
@ -43,10 +43,6 @@ struct epoll_event {
|
|||||||
epoll_data_t data;
|
epoll_data_t data;
|
||||||
};
|
};
|
||||||
|
|
||||||
int epoll_create(int size);
|
|
||||||
int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event);
|
|
||||||
int epoll_wait(int epfd, struct epoll_event *events, int nevents, int timeout);
|
|
||||||
|
|
||||||
int epoll_create(int size)
|
int epoll_create(int size)
|
||||||
{
|
{
|
||||||
return -1;
|
return -1;
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
#include <ngx_config.h>
|
#include <ngx_config.h>
|
||||||
#include <ngx_core.h>
|
#include <ngx_core.h>
|
||||||
#include <ngx_event.h>
|
#include <ngx_event.h>
|
||||||
#include <ngx_kqueue_module.h>
|
|
||||||
|
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
@ -1,16 +0,0 @@
|
|||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Igor Sysoev
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef _NGX_KQUEUE_MODULE_H_INCLUDED_
|
|
||||||
#define _NGX_KQUEUE_MODULE_H_INCLUDED_
|
|
||||||
|
|
||||||
|
|
||||||
extern int ngx_kqueue;
|
|
||||||
extern ngx_module_t ngx_kqueue_module;
|
|
||||||
extern ngx_event_module_t ngx_kqueue_module_ctx;
|
|
||||||
|
|
||||||
|
|
||||||
#endif /* _NGX_KQUEUE_MODULE_H_INCLUDED_ */
|
|
@ -1,21 +0,0 @@
|
|||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Igor Sysoev
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef _NGX_AIO_H_INCLUDED_
|
|
||||||
#define _NGX_AIO_H_INCLUDED_
|
|
||||||
|
|
||||||
|
|
||||||
#include <ngx_core.h>
|
|
||||||
|
|
||||||
|
|
||||||
ssize_t ngx_aio_read(ngx_connection_t *c, u_char *buf, size_t size);
|
|
||||||
ssize_t ngx_aio_read_chain(ngx_connection_t *c, ngx_chain_t *cl);
|
|
||||||
ssize_t ngx_aio_write(ngx_connection_t *c, u_char *buf, size_t size);
|
|
||||||
ngx_chain_t *ngx_aio_write_chain(ngx_connection_t *c, ngx_chain_t *in,
|
|
||||||
off_t limit);
|
|
||||||
|
|
||||||
|
|
||||||
#endif /* _NGX_AIO_H_INCLUDED_ */
|
|
@ -7,20 +7,10 @@
|
|||||||
#include <ngx_config.h>
|
#include <ngx_config.h>
|
||||||
#include <ngx_core.h>
|
#include <ngx_core.h>
|
||||||
#include <ngx_event.h>
|
#include <ngx_event.h>
|
||||||
#include <ngx_aio.h>
|
|
||||||
|
|
||||||
#if (NGX_HAVE_KQUEUE)
|
|
||||||
#include <ngx_kqueue_module.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
extern int ngx_kqueue;
|
||||||
* the ready data requires 3 syscalls:
|
|
||||||
* aio_write(), aio_error(), aio_return()
|
|
||||||
* the non-ready data requires 4 (kqueue) or 5 syscalls:
|
|
||||||
* aio_write(), aio_error(), notifiction, aio_error(), aio_return()
|
|
||||||
* timeout, aio_cancel(), aio_error()
|
|
||||||
*/
|
|
||||||
|
|
||||||
ssize_t
|
ssize_t
|
||||||
ngx_aio_read(ngx_connection_t *c, u_char *buf, size_t size)
|
ngx_aio_read(ngx_connection_t *c, u_char *buf, size_t size)
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
#include <ngx_config.h>
|
#include <ngx_config.h>
|
||||||
#include <ngx_core.h>
|
#include <ngx_core.h>
|
||||||
#include <ngx_event.h>
|
#include <ngx_event.h>
|
||||||
#include <ngx_aio.h>
|
|
||||||
|
|
||||||
|
|
||||||
ssize_t
|
ssize_t
|
||||||
|
@ -7,20 +7,10 @@
|
|||||||
#include <ngx_config.h>
|
#include <ngx_config.h>
|
||||||
#include <ngx_core.h>
|
#include <ngx_core.h>
|
||||||
#include <ngx_event.h>
|
#include <ngx_event.h>
|
||||||
#include <ngx_aio.h>
|
|
||||||
|
|
||||||
#if (NGX_HAVE_KQUEUE)
|
|
||||||
#include <ngx_kqueue_module.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
extern int ngx_kqueue;
|
||||||
* the ready data requires 3 syscalls:
|
|
||||||
* aio_write(), aio_error(), aio_return()
|
|
||||||
* the non-ready data requires 4 (kqueue) or 5 syscalls:
|
|
||||||
* aio_write(), aio_error(), notifiction, aio_error(), aio_return()
|
|
||||||
* timeout, aio_cancel(), aio_error()
|
|
||||||
*/
|
|
||||||
|
|
||||||
ssize_t
|
ssize_t
|
||||||
ngx_aio_write(ngx_connection_t *c, u_char *buf, size_t size)
|
ngx_aio_write(ngx_connection_t *c, u_char *buf, size_t size)
|
||||||
|
@ -7,7 +7,6 @@
|
|||||||
#include <ngx_config.h>
|
#include <ngx_config.h>
|
||||||
#include <ngx_core.h>
|
#include <ngx_core.h>
|
||||||
#include <ngx_event.h>
|
#include <ngx_event.h>
|
||||||
#include <ngx_aio.h>
|
|
||||||
|
|
||||||
|
|
||||||
ngx_chain_t *
|
ngx_chain_t *
|
||||||
|
@ -47,6 +47,14 @@ ssize_t ngx_unix_send(ngx_connection_t *c, u_char *buf, size_t size);
|
|||||||
ngx_chain_t *ngx_writev_chain(ngx_connection_t *c, ngx_chain_t *in,
|
ngx_chain_t *ngx_writev_chain(ngx_connection_t *c, ngx_chain_t *in,
|
||||||
off_t limit);
|
off_t limit);
|
||||||
|
|
||||||
|
#if (NGX_HAVE_AIO)
|
||||||
|
ssize_t ngx_aio_read(ngx_connection_t *c, u_char *buf, size_t size);
|
||||||
|
ssize_t ngx_aio_read_chain(ngx_connection_t *c, ngx_chain_t *cl);
|
||||||
|
ssize_t ngx_aio_write(ngx_connection_t *c, u_char *buf, size_t size);
|
||||||
|
ngx_chain_t *ngx_aio_write_chain(ngx_connection_t *c, ngx_chain_t *in,
|
||||||
|
off_t limit);
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
extern ngx_os_io_t ngx_os_io;
|
extern ngx_os_io_t ngx_os_io;
|
||||||
extern ngx_int_t ngx_ncpu;
|
extern ngx_int_t ngx_ncpu;
|
||||||
|
Loading…
Reference in New Issue
Block a user