summaryrefslogtreecommitdiff
path: root/src/base.h
diff options
context:
space:
mode:
authorjan <jan@152afb58-edef-0310-8abb-c4023f1b3aa9>2006-11-28 14:54:47 +0000
committerjan <jan@152afb58-edef-0310-8abb-c4023f1b3aa9>2006-11-28 14:54:47 +0000
commit2099e9be98b427363a8317dcf54ac1c6e99958b7 (patch)
treed17f6f3d341e5f860d9c043685c14baeb65777b5 /src/base.h
parent18e57388a38094717739b5ae8ba0433e1d17bb12 (diff)
downloadlighttpd-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base.h b/src/base.h
index 5d78e84a..d0b0f7e2 100644
--- a/src/base.h
+++ b/src/base.h
@@ -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];