diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2011-10-11 13:49:40 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2011-10-11 13:49:40 (GMT) |
commit | 3fa119253b4bf22a4bbc21e8e36848c390e0d3f2 (patch) | |
tree | c19f55f8ddbc6b96e4171852c3d90178cbe4cb65 /perform | |
parent | 6cef07c21a5cc1b0dc66dd1a0834ea69f175baa5 (diff) | |
download | hdf5-3fa119253b4bf22a4bbc21e8e36848c390e0d3f2.zip hdf5-3fa119253b4bf22a4bbc21e8e36848c390e0d3f2.tar.gz hdf5-3fa119253b4bf22a4bbc21e8e36848c390e0d3f2.tar.bz2 |
[svn-r21513] Add HDprefix and change when pio_timer.h is included
Tested
Diffstat (limited to 'perform')
-rw-r--r-- | perform/pio_perf.c | 6 | ||||
-rw-r--r-- | perform/pio_timer.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/perform/pio_perf.c b/perform/pio_perf.c index d3e2531..411fb12 100644 --- a/perform/pio_perf.c +++ b/perform/pio_perf.c @@ -1312,11 +1312,11 @@ parse_command_line(int argc, char *argv[]) if (isalnum(*end) && i < 10) buf[i++] = *end; - if (!strcasecmp(buf, "phdf5")) { + if (!HDstrcasecmp(buf, "phdf5")) { cl_opts->io_types |= PIO_HDF5; - } else if (!strcasecmp(buf, "mpiio")) { + } else if (!HDstrcasecmp(buf, "mpiio")) { cl_opts->io_types |= PIO_MPI; - } else if (!strcasecmp(buf, "posix")) { + } else if (!HDstrcasecmp(buf, "posix")) { cl_opts->io_types |= PIO_POSIX; } else { fprintf(stderr, "pio_perf: invalid --api option %s\n", diff --git a/perform/pio_timer.c b/perform/pio_timer.c index 66f9eb0..9c8abb7 100644 --- a/perform/pio_timer.c +++ b/perform/pio_timer.c @@ -22,7 +22,7 @@ #include <stdio.h> #include <stdlib.h> -#include "pio_timer.h" +#include "hdf5.h" #ifdef H5_HAVE_PARALLEL @@ -157,7 +157,7 @@ set_time(pio_time *pt, timer_type t, int start_stop) } } else { if (start_stop == START) { - gettimeofday(&pt->sys_timer[t], NULL); + HDgettimeofday(&pt->sys_timer[t], NULL); /* When we start the timer for HDF5_FINE_WRITE_FIXED_DIMS or HDF5_FINE_READ_FIXED_DIMS * we compute the time it took to only open the file */ @@ -170,7 +170,7 @@ set_time(pio_time *pt, timer_type t, int start_stop) } else { struct timeval sys_t; - gettimeofday(&sys_t, NULL); + HDgettimeofday(&sys_t, NULL); pt->total_time[t] += sub_time(&sys_t, &(pt->sys_timer[t])); /* ((double)sys_t.tv_sec + |