summaryrefslogtreecommitdiffstats
path: root/posix-aio-compat.c
diff options
context:
space:
mode:
authorJuan Quintela2009-07-27 16:12:58 +0200
committerAnthony Liguori2009-07-27 21:09:20 +0200
commit2341f9a1adb42c8c1049ac63bd26fe8d6b0368c1 (patch)
treede14f0256ac534e7935dca4e835a681cc8589acf /posix-aio-compat.c
parentdefine MAP_ANONYMOUS if it is not defined in qemu-common.h (diff)
downloadqemu-2341f9a1adb42c8c1049ac63bd26fe8d6b0368c1.tar.gz
qemu-2341f9a1adb42c8c1049ac63bd26fe8d6b0368c1.tar.xz
qemu-2341f9a1adb42c8c1049ac63bd26fe8d6b0368c1.zip
rename HAVE_PREADV to CONFIG_PREADV
Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'posix-aio-compat.c')
-rw-r--r--posix-aio-compat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/posix-aio-compat.c b/posix-aio-compat.c
index e9fc9fa60a..3d79f59854 100644
--- a/posix-aio-compat.c
+++ b/posix-aio-compat.c
@@ -33,7 +33,7 @@ static int cur_threads = 0;
static int idle_threads = 0;
static TAILQ_HEAD(, qemu_paiocb) request_list;
-#ifdef HAVE_PREADV
+#ifdef CONFIG_PREADV
static int preadv_present = 1;
#else
static int preadv_present = 0;
@@ -102,7 +102,7 @@ static size_t handle_aiocb_ioctl(struct qemu_paiocb *aiocb)
return aiocb->aio_nbytes;
}
-#ifdef HAVE_PREADV
+#ifdef CONFIG_PREADV
static ssize_t
qemu_preadv(int fd, const struct iovec *iov, int nr_iov, off_t offset)