You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
318 B
11 lines
318 B
#ifndef FIO_HELPER_THREAD_H |
|
#define FIO_HELPER_THREAD_H |
|
|
|
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_mutex *, struct sk_out *); |
|
|
|
#endif
|
|
|