From 0c76294c12bdc3df90a41754b05fa30b612ea6eb Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Sun, 27 Aug 2017 15:21:26 -0600 Subject: [PATCH] engines/windowsaio: kill useless forward declarations Signed-off-by: Jens Axboe --- engines/windowsaio.c | 11 ----------- 1 file changed, 11 deletions(-) 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; -- 2.25.1