From: Denis Pronin Date: Thu, 27 Jul 2023 19:08:45 +0000 (+0300) Subject: helper_thread.h: forwardly declare structures fio_sem and sk_out X-Git-Tag: fio-3.36~41^2 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=5bf944a011984675f31e591272eda8efb2092d78;p=fio.git 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 --- 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);