diff options
author | David Young <dyoung@hdfgroup.org> | 2019-10-26 01:47:18 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2019-11-19 20:12:29 (GMT) |
commit | c905d7105af3fbfb81811a2fe3a5f11febb02ab1 (patch) | |
tree | 8743fd764177b890fe6ccabfead0a12c2065061f | |
parent | e847ec43ac23d980536d5af3a4e5669b7c62cbdf (diff) | |
download | hdf5-c905d7105af3fbfb81811a2fe3a5f11febb02ab1.zip hdf5-c905d7105af3fbfb81811a2fe3a5f11febb02ab1.tar.gz hdf5-c905d7105af3fbfb81811a2fe3a5f11febb02ab1.tar.bz2 |
Remove the last (?) vestige of gettimeofday alternate implementation of
VFD SWMR.
-rw-r--r-- | src/H5Fpkg.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/H5Fpkg.h b/src/H5Fpkg.h index 9fa7c29..ff92c98 100644 --- a/src/H5Fpkg.h +++ b/src/H5Fpkg.h @@ -393,11 +393,7 @@ struct H5F_file_t { * not */ uint64_t tick_num; /* Number of the current tick */ -#if 1 /* use clock_gettime() */ /* JRM */ struct timespec end_of_tick; /* End time of the current tick */ -#else /* use gettimeofday() */ /* JRM */ - struct timeval end_of_tick; /* End time of the current tick */ -#endif /* use gettimeofday() */ /* JRM */ /* VFD SWMR metadata file index */ H5FD_vfd_swmr_idx_entry_t * mdf_idx; /* pointer to an array of instance |