Fix --timeout as global parameter
[fio.git] / parse.h
diff --git a/parse.h b/parse.h
index 9cda559550c9f836f5b17aaf51641b8e87736b69..2dd8459f646304303dd571fbb638e331451756ef 100644 (file)
--- a/parse.h
+++ b/parse.h
@@ -9,6 +9,7 @@
 enum fio_opt_type {
        FIO_OPT_INVALID = 0,
        FIO_OPT_STR,
+       FIO_OPT_STR_MULTI,
        FIO_OPT_STR_VAL,
        FIO_OPT_STR_VAL_TIME,
        FIO_OPT_STR_STORE,
@@ -26,6 +27,7 @@ struct value_pair {
        const char *ival;               /* string option */
        unsigned int oval;              /* output value */
        const char *help;               /* help text for sub option */
+       int or;                         /* OR value */
 };
 
 #define OPT_LEN_MAX    4096
@@ -87,4 +89,9 @@ typedef int (fio_opt_str_set_fn)(void *);
 #define max(a, b)      ((a) > (b) ? (a) : (b))
 #endif
 
+static inline int parse_is_percent(unsigned long long val)
+{
+       return val <= -1ULL && val >= (-1ULL - 100ULL);
+}
+
 #endif