diff options
author | jan <jan@152afb58-edef-0310-8abb-c4023f1b3aa9> | 2006-11-28 14:54:47 +0000 |
---|---|---|
committer | jan <jan@152afb58-edef-0310-8abb-c4023f1b3aa9> | 2006-11-28 14:54:47 +0000 |
commit | 2099e9be98b427363a8317dcf54ac1c6e99958b7 (patch) | |
tree | d17f6f3d341e5f860d9c043685c14baeb65777b5 /src/base.h | |
parent | 18e57388a38094717739b5ae8ba0433e1d17bb12 (diff) | |
download | lighttpd-2099e9be98b427363a8317dcf54ac1c6e99958b7.tar.gz |
increased the number of iocbs to 128
git-svn-id: svn://svn.lighttpd.net/lighttpd/trunk@1462 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'src/base.h')
-rw-r--r-- | src/base.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -580,14 +580,14 @@ typedef struct server { int have_aio_waiting; #ifdef HAVE_LIBAIO_H -#define LINUX_IO_MAX_IOCBS 64 +#define LINUX_IO_MAX_IOCBS 128 io_context_t linux_io_ctx; struct iocb linux_io_iocbs[LINUX_IO_MAX_IOCBS]; #endif #ifdef HAVE_AIO_H -#define POSIX_AIO_MAX_IOCBS 64 +#define POSIX_AIO_MAX_IOCBS 128 struct aiocb posix_aio_iocbs[POSIX_AIO_MAX_IOCBS]; struct aiocb * posix_aio_iocbs_watch[POSIX_AIO_MAX_IOCBS]; |