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