view src/os/unix/ngx_aio.h @ 362:7650aea1816f

nginx-0.0.7-2004-06-21-19:59:32 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 21 Jun 2004 15:59:32 +0000
parents 4a3f18406832
children da8c5707af39
line wrap: on
line source

#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_ */