diff options
author | Quincey Koziol <quincey@koziol.cc> | 2023-05-12 19:52:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-12 19:52:11 (GMT) |
commit | 0d4a12d7cd0f0c10b385533365fc1f3ebeef8e74 (patch) | |
tree | dd065c47aa9ddd88cbb8a7d86391c0b4d10e1313 /src/H5Clog.h | |
parent | 2a2c2d9ebea6e4a7b5464b54ae412e5dd659eed1 (diff) | |
download | hdf5-0d4a12d7cd0f0c10b385533365fc1f3ebeef8e74.zip hdf5-0d4a12d7cd0f0c10b385533365fc1f3ebeef8e74.tar.gz hdf5-0d4a12d7cd0f0c10b385533365fc1f3ebeef8e74.tar.bz2 |
Move functions into more focused source code modules (#2936)
* Move functions into more focused source code modules, along with a small #
of directly secondary effects. No actual changes to the contents of any
moved routines.
Signed-off-by: Quincey Koziol <quincey@koziol.cc>
* Committing clang-format changes
---------
Signed-off-by: Quincey Koziol <quincey@koziol.cc>
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'src/H5Clog.h')
-rw-r--r-- | src/H5Clog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Clog.h b/src/H5Clog.h index b3636c6..b8ea5ed 100644 --- a/src/H5Clog.h +++ b/src/H5Clog.h @@ -132,7 +132,7 @@ H5_DLL herr_t H5C_log_write_remove_entry_msg(H5C_t *cache, const H5C_cache_entry herr_t fxn_ret_value); /* Logging-specific setup functions */ -H5_DLL herr_t H5C_log_json_set_up(H5C_log_info_t *log_info, const char log_location[], int mpi_rank); -H5_DLL herr_t H5C_log_trace_set_up(H5C_log_info_t *log_info, const char log_location[], int mpi_rank); +H5_DLL herr_t H5C__log_json_set_up(H5C_log_info_t *log_info, const char log_location[], int mpi_rank); +H5_DLL herr_t H5C__log_trace_set_up(H5C_log_info_t *log_info, const char log_location[], int mpi_rank); #endif /* H5Clog_H */ |