cleanup: add defines for default pareto or zipf values
[fio.git] / fio.h
diff --git a/fio.h b/fio.h
index 50cf1b03f3956985d9244a32330969ae57ff12c1..be2f23aa9f7662f448c9b1f63b6f087333bdb9a2 100644 (file)
--- a/fio.h
+++ b/fio.h
@@ -252,6 +252,7 @@ struct thread_data {
        struct timeval start;   /* start of this loop */
        struct timeval epoch;   /* time job was started */
        struct timeval last_issue;
+       long time_offset;
        struct timeval tv_cache;
        struct timeval terminate_time;
        unsigned int tv_cache_nr;
@@ -393,6 +394,7 @@ extern int helper_do_stat;
 extern pthread_cond_t helper_cond;
 extern char *trigger_file;
 extern char *trigger_cmd;
+extern char *trigger_remote_cmd;
 extern long long trigger_timeout;
 
 extern struct thread_data *threads;
@@ -640,6 +642,9 @@ enum {
        FIO_RAND_DIST_PARETO,
 };
 
+#define FIO_DEF_ZIPF           1.1
+#define FIO_DEF_PARETO         0.2
+
 enum {
        FIO_RAND_GEN_TAUSWORTHE = 0,
        FIO_RAND_GEN_LFSR,