helper_thread.h: include missing stdbool.h because 'bool' type is used
[fio.git] / helper_thread.h
... / ...
CommitLineData
1#ifndef FIO_HELPER_THREAD_H
2#define FIO_HELPER_THREAD_H
3
4#include <stdbool.h>
5
6extern void helper_reset(void);
7extern void helper_do_stat(void);
8extern bool helper_should_exit(void);
9extern void helper_thread_destroy(void);
10extern void helper_thread_exit(void);
11extern int helper_thread_create(struct fio_sem *, struct sk_out *);
12
13#endif