helper_thread.h: forwardly declare structures fio_sem and sk_out
authorDenis Pronin <dannftk@yandex.ru>
Thu, 27 Jul 2023 19:08:45 +0000 (22:08 +0300)
committerDenis Pronin <dannftk@yandex.ru>
Thu, 27 Jul 2023 19:23:24 +0000 (22:23 +0300)
helper_thread_create() function requires two structures to be declared

Signed-off-by: Denis Pronin <dannftk@yandex.ru>
helper_thread.h

index 91b504638f229bcf3b4b002ab9c0c61a01e557b9..1c8167e83b63a8f9b74a3e218e892aad1bc1b7cf 100644 (file)
@@ -3,6 +3,9 @@
 
 #include <stdbool.h>
 
+struct fio_sem;
+struct sk_out;
+
 extern void helper_reset(void);
 extern void helper_do_stat(void);
 extern bool helper_should_exit(void);