Fix address truncation on Windows
[fio.git] / fio.h
diff --git a/fio.h b/fio.h
index 7443bc06bdd510f79a5b3a550ea41d6d0e953874..6da22f039c8b1216762ec7ae349fb66b0d5bf229 100644 (file)
--- a/fio.h
+++ b/fio.h
@@ -195,6 +195,7 @@ struct thread_options {
        unsigned int refill_buffers;
        unsigned int scramble_buffers;
        unsigned int compress_percentage;
+       unsigned int compress_chunk;
        unsigned int time_based;
        unsigned int disable_lat;
        unsigned int disable_clat;
@@ -265,6 +266,8 @@ struct thread_options {
        int flow_watermark;
        unsigned int flow_sleep;
 
+       unsigned long long offset_increment;
+
        unsigned int sync_file_range;
 };
 
@@ -307,6 +310,7 @@ struct thread_data {
                struct frand_state __next_file_state;
        };
        int error;
+       int sig;
        int done;
        pid_t pid;
        char *orig_buffer;
@@ -524,7 +528,7 @@ extern int groupid;
 extern int terse_output;
 extern int temp_stall_ts;
 extern unsigned long long mlock_size;
-extern unsigned long page_mask, page_size;
+extern uintptr_t page_mask, page_size;
 extern int read_only;
 extern int eta_print;
 extern unsigned long done_secs;