summaryrefslogtreecommitdiffstats
path: root/src/H5Fvfd_swmr.c
diff options
context:
space:
mode:
authorgithub-actions <41898282+github-actions[bot]@users.noreply.github.com>2021-11-02 17:25:26 (GMT)
committergithub-actions <41898282+github-actions[bot]@users.noreply.github.com>2021-11-02 17:25:26 (GMT)
commit43c2c955b876b5eef2446bac2159c8e03fe60b47 (patch)
tree5161b74b3b47ada796f06a1c9b0db1a2ac4f5487 /src/H5Fvfd_swmr.c
parent2045b7984b6ffb71cb75393230a11edfed03f3fb (diff)
downloadhdf5-43c2c955b876b5eef2446bac2159c8e03fe60b47.zip
hdf5-43c2c955b876b5eef2446bac2159c8e03fe60b47.tar.gz
hdf5-43c2c955b876b5eef2446bac2159c8e03fe60b47.tar.bz2
Committing clang-format changes
Diffstat (limited to 'src/H5Fvfd_swmr.c')
-rw-r--r--src/H5Fvfd_swmr.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/H5Fvfd_swmr.c b/src/H5Fvfd_swmr.c
index 9404cf4..b3c3ffe 100644
--- a/src/H5Fvfd_swmr.c
+++ b/src/H5Fvfd_swmr.c
@@ -54,7 +54,6 @@
#define nanosecs_per_second 1000000000 /* nanoseconds per second */
#define nanosecs_per_tenth_sec 100000000 /* nanoseconds per 0.1 second */
-
/* Declare an array of string to identify the VFD SMWR Log tags.
* Note this array is used to generate the entry tag by the log reporting macro
* H5F_POST_VFD_SWMR_LOG_ENTRY.
@@ -87,8 +86,8 @@ static const char *H5Fvfd_swmr_log_tags[] = {
*/
const char *log_fmt_str = "%-26s: %.3lf s: %s\n";
-/* The length of the EOT processing time log message, subject to change */
-const unsigned int eot_pt_log_mesg_length = 48;
+/* The length of the EOT processing time log message, subject to change */
+const unsigned int eot_pt_log_mesg_length = 48;
/* The length of error message in the log */
const unsigned int log_err_mesg_length = 14;
@@ -358,7 +357,7 @@ H5F_vfd_swmr_close_or_flush(H5F_t *f, hbool_t closing)
HDONE_ERROR(H5E_FILE, H5E_CANTSET, FAIL, "unable to update end of tick");
}
#if 1 /*Kent Save the end of close info. to the log file, subject to comment out. */
- if(closing)
+ if (closing)
H5F_POST_VFD_SWMR_LOG_ENTRY(f, 2, "VFD SWMR File close ends");
#endif
done:
@@ -956,8 +955,8 @@ done:
if (H5_timer_get_times(shared->vfd_swmr_log_start_time, &current_time) < 0)
HGOTO_ERROR(H5E_FILE, H5E_CANTGET, FAIL, "can't get time from H5_timer_get_times")
end_elapsed_time = current_time.elapsed;
- if(NULL != (log_msg = HDmalloc(eot_pt_log_mesg_length*sizeof(char)))) {
- temp_time = (unsigned int)((end_elapsed_time - start_elapsed_time) * 1000);
+ if (NULL != (log_msg = HDmalloc(eot_pt_log_mesg_length * sizeof(char)))) {
+ temp_time = (unsigned int)((end_elapsed_time - start_elapsed_time) * 1000);
HDsprintf(log_msg, "Writer time is %u milliseconds", temp_time);
H5F_POST_VFD_SWMR_LOG_ENTRY(f, 0, log_msg);
HDfree(log_msg);
@@ -1997,7 +1996,7 @@ H5F_post_vfd_swmr_log_entry(H5F_t *f, int entry_type_code, char *log_info)
else obtain the elapsed time in seconds since the log file
was created and write the time to the log file. */
if (H5_timer_get_times(f->shared->vfd_swmr_log_start_time, &current_time) < 0) {
- if(NULL != (gettime_error = HDmalloc(log_err_mesg_length*sizeof(char)))) {
+ if (NULL != (gettime_error = HDmalloc(log_err_mesg_length * sizeof(char)))) {
HDsprintf(gettime_error, "gettime_error");
HDfprintf(f->shared->vfd_swmr_log_file_ptr, "%-26s: %s\n", H5Fvfd_swmr_log_tags[entry_type_code],
gettime_error);