From: Jens Axboe Date: Sun, 27 Aug 2017 21:21:26 +0000 (-0600) Subject: engines/windowsaio: kill useless forward declarations X-Git-Tag: fio-3.1~39 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=0c76294c12bdc3df90a41754b05fa30b612ea6eb engines/windowsaio: kill useless forward declarations Signed-off-by: Jens Axboe --- diff --git a/engines/windowsaio.c b/engines/windowsaio.c index f5cb0483..c4c5abd4 100644 --- a/engines/windowsaio.c +++ b/engines/windowsaio.c @@ -35,17 +35,7 @@ struct thread_ctx { struct windowsaio_data *wd; }; -static BOOL timeout_expired(DWORD start_count, DWORD end_count); -static int fio_windowsaio_getevents(struct thread_data *td, unsigned int min, - unsigned int max, const struct timespec *t); -static struct io_u *fio_windowsaio_event(struct thread_data *td, int event); -static int fio_windowsaio_queue(struct thread_data *td, - struct io_u *io_u); -static void fio_windowsaio_cleanup(struct thread_data *td); static DWORD WINAPI IoCompletionRoutine(LPVOID lpParameter); -static int fio_windowsaio_init(struct thread_data *td); -static int fio_windowsaio_open_file(struct thread_data *td, struct fio_file *f); -static int fio_windowsaio_close_file(struct thread_data fio_unused *td, struct fio_file *f); static int fio_windowsaio_init(struct thread_data *td) { @@ -152,7 +142,6 @@ static void fio_windowsaio_cleanup(struct thread_data *td) } } - static int fio_windowsaio_open_file(struct thread_data *td, struct fio_file *f) { int rc = 0;