From: Sascha Wildner Date: Mon, 11 Apr 2011 22:30:15 +0000 (+0200) Subject: : Add aio_fsync() prototype. X-Git-Tag: v2.11.0~56^2~25 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/cf014b3dff7f0a3cd32668424c96cb01226fb1ff : Add aio_fsync() prototype. --- diff --git a/sys/sys/aio.h b/sys/sys/aio.h index f63902e829..03a68cbeb0 100644 --- a/sys/sys/aio.h +++ b/sys/sys/aio.h @@ -126,6 +126,11 @@ int aio_cancel(int, struct aiocb *); */ int aio_suspend(const struct aiocb * const[], int, const struct timespec *); +/* + * Synchronize I/O + */ +int aio_fsync(int, struct aiocb *); + int aio_waitcomplete(struct aiocb **, struct timespec *); __END_DECLS