projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b2e3b6e
)
Unbreak BSD: use qemu_fdatasync instead of fdatasync
author
Blue Swirl
<blauwirbel@gmail.com>
Sat, 12 Sep 2009 06:19:14 +0000
(06:19 +0000)
committer
Blue Swirl
<blauwirbel@gmail.com>
Sat, 12 Sep 2009 06:19:14 +0000
(06:19 +0000)
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
posix-aio-compat.c
patch
|
blob
|
history
diff --git
a/posix-aio-compat.c
b/posix-aio-compat.c
index 498cc1f4cbdf1afe562df546a4f077e96a6efc56..8bb3d10ee8a4c18d5818e24ab7fd2f98559c8f66 100644
(file)
--- a/
posix-aio-compat.c
+++ b/
posix-aio-compat.c
@@
-138,7
+138,7
@@
static size_t handle_aiocb_flush(struct qemu_paiocb *aiocb)
{
int ret;
- ret = fdatasync(aiocb->aio_fildes);
+ ret =
qemu_
fdatasync(aiocb->aio_fildes);
if (ret == -1)
return -errno;
return 0;