comparison src/os/unix/ngx_aio.h @ 93:738fe44c70d5

nginx-0.0.1-2003-05-21-17:28:21 import
author Igor Sysoev <igor@sysoev.ru>
date Wed, 21 May 2003 13:28:21 +0000
parents
children 84036764e215
comparison
equal deleted inserted replaced
92:19cc647ecd91 93:738fe44c70d5
1 #ifndef _NGX_AIO_H_INCLUDED_
2 #define _NGX_AIO_H_INCLUDED_
3
4
5 #include <ngx_core.h>
6
7
8 ssize_t ngx_aio_read(ngx_connection_t *c, char *buf, size_t size);
9 ssize_t ngx_aio_write(ngx_connection_t *c, char *buf, size_t size);
10 ngx_chain_t *ngx_aio_write_chain(ngx_connection_t *c, ngx_chain_t *in);
11
12
13 #endif /* _NGX_AIO_H_INCLUDED_ */