summaryrefslogtreecommitdiffstats
path: root/perform/pio_perf.h
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2001-12-11 21:45:29 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2001-12-11 21:45:29 (GMT)
commit8ee62202858a17ec089bf8073f0d4aa196f6547a (patch)
tree52d9776ffb9822092b36b47eae9a642693f160aa /perform/pio_perf.h
parent0421075efcd50f01412f79d0f6ef4d22ea4daf58 (diff)
downloadhdf5-8ee62202858a17ec089bf8073f0d4aa196f6547a.zip
hdf5-8ee62202858a17ec089bf8073f0d4aa196f6547a.tar.gz
hdf5-8ee62202858a17ec089bf8073f0d4aa196f6547a.tar.bz2
[svn-r4699] Purpose:
Bug fixes, feature, ... Description: Now it can do raw write. Platforms tested: modi4(pp), eirene (pp)
Diffstat (limited to 'perform/pio_perf.h')
-rw-r--r--perform/pio_perf.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/perform/pio_perf.h b/perform/pio_perf.h
index 5ce80de..fb25f62 100644
--- a/perform/pio_perf.h
+++ b/perform/pio_perf.h
@@ -17,13 +17,13 @@ typedef enum iotype_ {
} iotype;
typedef struct parameters_ {
- unsigned int max_num_procs; /* Maximum number of processes to use */
- iotype io_type; /* The type of IO test to perform */
- unsigned int num_files; /* Number of files to create */
- unsigned long num_dsets; /* Number of datasets to create */
- unsigned long num_elmts; /* Number of native ints in each dset */
- unsigned int num_iters; /* Number of times to loop doing the IO */
- unsigned long buf_size; /* Buffer size */
+ 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 */
+ long buf_size; /* Buffer size */
} parameters;
typedef struct results_ {