diff options
author | root <root> | 2008-05-11 00:06:25 +0000 |
---|---|---|
committer | root <root> | 2008-05-11 00:06:25 +0000 |
commit | bb92967cd6ae5888c071f8f2c8441825270ef2ba (patch) | |
tree | 4a336af7e69e41ac0e678d55b14b3764e4744acc | |
parent | 6ecb7a8b6f0c086d9d5aba1bda289a0383e8f83f (diff) |
*** empty log message ***
-rw-r--r-- | config.h.in | 2 | ||||
-rw-r--r-- | eio.c | 9 |
2 files changed, 4 insertions, 7 deletions
diff --git a/config.h.in b/config.h.in index fbb6ab3..960d7aa 100644 --- a/config.h.in +++ b/config.h.in @@ -1,4 +1,4 @@ -/* config.h.in. Generated from configure.ac by autoheader. */ +/* libeio/config.h.in. Generated from configure.ac by autoheader. */ /* fdatasync(2) is available */ #undef HAVE_FDATASYNC @@ -2,19 +2,16 @@ #include "xthread.h" #include <errno.h> - -#include "EXTERN.h" -#include "perl.h" -#include "XSUB.h" - #include <stddef.h> #include <stdlib.h> +#include <string.h> #include <errno.h> #include <sys/types.h> #include <sys/stat.h> #include <limits.h> #include <fcntl.h> #include <sched.h> +#include <dirent.h> #ifndef EIO_FINISH # define EIO_FINISH(req) ((req)->finish) && !EIO_CANCELLED (req) ? (req)->finish (req) : 0 @@ -573,7 +570,7 @@ static ssize_t aio_readahead (int fd, off_t offset, size_t count, worker *self) { size_t len = todo < EIO_BUFSIZE ? todo : EIO_BUFSIZE; - pread (fd, aio_buf, len, offset); + pread (fd, eio_buf, len, offset); offset += len; todo -= len; } |