Add support for non-uniformly random file service type
[fio.git] / fio.h
diff --git a/fio.h b/fio.h
index 20ff26fcac6dd3c8e606e6356bce915b2ad3d17f..8b6a27220db7e3e1ea9323a6f5dd872ef3d946af 100644 (file)
--- a/fio.h
+++ b/fio.h
@@ -170,6 +170,15 @@ struct thread_data {
                unsigned int next_file;
                struct frand_state next_file_state;
        };
+       union {
+               struct zipf_state next_file_zipf;
+               struct gauss_state next_file_gauss;
+       };
+       union {
+               double zipf_theta;
+               double pareto_h;
+               double gauss_dev;
+       };
        int error;
        int sig;
        int done;
@@ -732,8 +741,4 @@ enum {
 extern void exec_trigger(const char *);
 extern void check_trigger_file(void);
 
-extern void helper_reset(void);
-extern void helper_do_stat(void);
-extern bool helper_should_exit(void);
-
 #endif