Cleanup profile support
[fio.git] / options.h
1 #ifndef FIO_OPTION_H
2 #define FIO_OPTION_H
3
4 #define FIO_MAX_OPTS            512
5
6 #include "parse.h"
7 #include "flist.h"
8
9 #define td_var_offset(var)      ((size_t) &((struct thread_options *)0)->var)
10
11 int add_option(struct fio_option *);
12 void invalidate_profile_options(const char *);
13 extern char *exec_profile;
14
15 #endif