The following changes since commit 0b47b2cf3dab1d26d72f52ed8c19f782a8277d3a: Merge branch 'prio-hints' (2023-07-21 15:23:40 -0600) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 45eb1cf5ce883ae3b170f102db38204616c8e4b1: Merge branch 'helper_thread-fix-missing-stdbool-header' of https://github.com/dpronin/fio (2023-07-27 13:48:26 -0600) ---------------------------------------------------------------- Denis Pronin (3): diskutil.h: fix missing headers wanted by the header helper_thread.h: include missing stdbool.h because 'bool' type is used helper_thread.h: forwardly declare structures fio_sem and sk_out Jens Axboe (2): Merge branch 'diskutil-fix-missing-headers' of https://github.com/dpronin/fio Merge branch 'helper_thread-fix-missing-stdbool-header' of https://github.com/dpronin/fio diskutil.h | 3 +++ helper_thread.h | 5 +++++ 2 files changed, 8 insertions(+) --- Diff of recent changes: diff --git a/diskutil.h b/diskutil.h index 9dca42c4..9b283799 100644 --- a/diskutil.h +++ b/diskutil.h @@ -2,10 +2,13 @@ #define FIO_DISKUTIL_H #define FIO_DU_NAME_SZ 64 +#include <stdint.h> #include <limits.h> #include "helper_thread.h" #include "fio_sem.h" +#include "flist.h" +#include "lib/ieee754.h" /** * @ios: Number of I/O operations that have been completed successfully. diff --git a/helper_thread.h b/helper_thread.h index d7df6c4d..1c8167e8 100644 --- a/helper_thread.h +++ b/helper_thread.h @@ -1,6 +1,11 @@ #ifndef FIO_HELPER_THREAD_H #define FIO_HELPER_THREAD_H +#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);