From 5bf944a011984675f31e591272eda8efb2092d78 Mon Sep 17 00:00:00 2001 From: Denis Pronin Date: Thu, 27 Jul 2023 22:08:45 +0300 Subject: [PATCH] helper_thread.h: forwardly declare structures fio_sem and sk_out helper_thread_create() function requires two structures to be declared Signed-off-by: Denis Pronin --- helper_thread.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/helper_thread.h b/helper_thread.h index 91b50463..1c8167e8 100644 --- a/helper_thread.h +++ b/helper_thread.h @@ -3,6 +3,9 @@ #include +struct fio_sem; +struct sk_out; + extern void helper_reset(void); extern void helper_do_stat(void); extern bool helper_should_exit(void); -- 2.25.1