diff options
author | Quincey Koziol <koziol@lbl.gov> | 2020-07-02 15:36:44 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@lbl.gov> | 2020-07-02 15:36:44 (GMT) |
commit | d05b58b5d4806d694f16d0fc698c5e1c057a411b (patch) | |
tree | 1931c3ebb10d98d90b694adb1588945d9519c394 /src/H5Eprivate.h | |
parent | 7cbb5fe2d177e49417401e1dc0b2a4c9d618cc67 (diff) | |
parent | 7371c83f9777b34b31909e99e052398b93c31bed (diff) | |
download | hdf5-d05b58b5d4806d694f16d0fc698c5e1c057a411b.zip hdf5-d05b58b5d4806d694f16d0fc698c5e1c057a411b.tar.gz hdf5-d05b58b5d4806d694f16d0fc698c5e1c057a411b.tar.bz2 |
Merge pull request #2668 in HDFFV/hdf5 from monotonic_timer to develop
* commit '7371c83f9777b34b31909e99e052398b93c31bed':
Remove non-existent example
Add new source files to CMake build
Clean up warnings
va_arg -> HDva_arg
Refactor code to remove remaining checks for H5_HAVE_GETTIMEOFDAY scattered around in various places. Also clean up iopipe.c.
Correct mistake in H5_now_usec calculation for clock_gettime.
Remove detection for mach/mach/time.h, since we're no longer using the time routines from that header.
Update H5_now_usec to prefer using clock_gettime.
Changes to make timers within the library monotonic.
Diffstat (limited to 'src/H5Eprivate.h')
-rw-r--r-- | src/H5Eprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Eprivate.h b/src/H5Eprivate.h index 19ab729..130a8fd 100644 --- a/src/H5Eprivate.h +++ b/src/H5Eprivate.h @@ -180,7 +180,7 @@ extern int H5E_mpi_error_str_len; /* Library-private functions defined in H5E package */ H5_DLL herr_t H5E_init(void); H5_DLL herr_t H5E_printf_stack(H5E_t *estack, const char *file, const char *func, - unsigned line, hid_t cls_id, hid_t maj_id, hid_t min_id, const char *fmt, ...)H5_ATTR_FORMAT(printf, 8, 9); + unsigned line, hid_t cls_id, hid_t maj_id, hid_t min_id, const char *fmt, ...) H5_ATTR_FORMAT(printf, 8, 9); H5_DLL herr_t H5E_clear_stack(H5E_t *estack); H5_DLL herr_t H5E_dump_api_stack(hbool_t is_api); |