Cleanup profile support
[fio.git] / options.h
index 29bb7a162142ea0258d6b400301ae795e795fcaf..cf823fc62535a7158c6e5de0552dc2fb3bec67a1 100644 (file)
--- a/options.h
+++ b/options.h
@@ -1,16 +1,15 @@
 #ifndef FIO_OPTION_H
 #define FIO_OPTION_H
 
+#define FIO_MAX_OPTS           512
+
 #include "parse.h"
 #include "flist.h"
 
 #define td_var_offset(var)     ((size_t) &((struct thread_options *)0)->var)
 
-struct ext_option {
-       struct flist_head list;
-       struct fio_option o;
-};
-
-void register_option(struct ext_option *);
+int add_option(struct fio_option *);
+void invalidate_profile_options(const char *);
+extern char *exec_profile;
 
 #endif