diff options
Diffstat (limited to 'perform/pio_perf.h')
-rw-r--r-- | perform/pio_perf.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/perform/pio_perf.h b/perform/pio_perf.h index fb25f62..d954591 100644 --- a/perform/pio_perf.h +++ b/perform/pio_perf.h @@ -17,12 +17,12 @@ typedef enum iotype_ { } iotype; typedef struct parameters_ { - int max_num_procs; /* Maximum number of processes to use */ - iotype io_type; /* The type of IO test to perform */ - int num_files; /* Number of files to create */ - long num_dsets; /* Number of datasets to create */ - long num_elmts; /* Number of native ints in each dset */ - int num_iters; /* Number of times to loop doing the IO */ + iotype io_type; /* The type of IO test to perform */ + int num_procs; /* Maximum number of processes to use */ + int num_files; /* Number of files to create */ + long num_dsets; /* Number of datasets to create */ + long num_elmts; /* Number of native ints in each dset */ + int num_iters; /* Number of times to loop doing the IO */ long buf_size; /* Buffer size */ } parameters; |