aboutsummaryrefslogtreecommitdiffstats
path: root/helper_thread.h
blob: 1c8167e83b63a8f9b74a3e218e892aad1bc1b7cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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);
extern void helper_thread_destroy(void);
extern void helper_thread_exit(void);
extern int helper_thread_create(struct fio_sem *, struct sk_out *);

#endif