summaryrefslogtreecommitdiffstats
path: root/test/vfd_swmr_bigset_writer.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-05-27 15:31:02 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-05-27 15:31:02 (GMT)
commit56fd83f66a391088bd110c93ab96c7667a8b06fb (patch)
tree532f8b7f225b717f252d01af818638efbccf82fc /test/vfd_swmr_bigset_writer.c
parent1280b34b7f40af58680ecd2a2dcd52a02b4be95c (diff)
downloadhdf5-56fd83f66a391088bd110c93ab96c7667a8b06fb.zip
hdf5-56fd83f66a391088bd110c93ab96c7667a8b06fb.tar.gz
hdf5-56fd83f66a391088bd110c93ab96c7667a8b06fb.tar.bz2
Delete unused `state_t` members. NFCI.
Diffstat (limited to 'test/vfd_swmr_bigset_writer.c')
-rw-r--r--test/vfd_swmr_bigset_writer.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/test/vfd_swmr_bigset_writer.c b/test/vfd_swmr_bigset_writer.c
index fa53264..2a2718c 100644
--- a/test/vfd_swmr_bigset_writer.c
+++ b/test/vfd_swmr_bigset_writer.c
@@ -46,16 +46,12 @@ typedef struct _mat {
} mat_t;
typedef struct {
- /* main-loop statistics */
- uint64_t max_elapsed_ns, min_elapsed_ns, total_elapsed_ns;
- uint64_t total_loops;
hid_t *dataset;
hid_t memspace, file, one_by_one_sid;
unsigned ndatasets;
char filename[PATH_MAX];
char progname[PATH_MAX];
struct timespec update_interval;
- bool fuzz;
unsigned int cols, rows;
unsigned int asteps;
unsigned int nsteps;
@@ -67,11 +63,7 @@ typedef struct {
} state_t;
#define ALL_HID_INITIALIZER (state_t){ \
- .total_elapsed_ns = 0 \
- , .total_loops = 0 \
- , .min_elapsed_ns = UINT64_MAX \
- , .max_elapsed_ns = 0 \
- , .memspace = H5I_INVALID_HID \
+ .memspace = H5I_INVALID_HID \
, .file = H5I_INVALID_HID \
, .one_by_one_sid = H5I_INVALID_HID \
, .rows = ROWS \