blob: cf823fc62535a7158c6e5de0552dc2fb3bec67a1 [file] [log] [blame]
Jens Axboe9f988e22010-03-04 10:42:38 +01001#ifndef FIO_OPTION_H
2#define FIO_OPTION_H
3
Jens Axboe07b32322010-03-05 09:48:44 +01004#define FIO_MAX_OPTS 512
5
Jens Axboe9f988e22010-03-04 10:42:38 +01006#include "parse.h"
7#include "flist.h"
8
9#define td_var_offset(var) ((size_t) &((struct thread_options *)0)->var)
10
Jens Axboe07b32322010-03-05 09:48:44 +010011int add_option(struct fio_option *);
12void invalidate_profile_options(const char *);
13extern char *exec_profile;
Jens Axboe9f988e22010-03-04 10:42:38 +010014
15#endif