Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Misc normalization from develop | Dana Robinson | 2021-05-07 | 1 | -2/+2 |
| | |||||
* | Updates license url and history docs | Dana Robinson | 2021-03-25 | 1 | -1/+1 |
| | |||||
* | Formats the source and updates the gcc warning pragmas | Dana Robinson | 2021-03-25 | 1 | -90/+70 |
| | |||||
* | Merge branch 'aug-develop' into aug-merge-attempt/feature/vfd_swmr | David Young | 2020-08-04 | 1 | -21/+21 |
|\ | |||||
| * | Normalization with hdf5_1_10 | Dana Robinson | 2020-06-01 | 1 | -21/+21 |
| | | |||||
| * | Trim trailing whitespace | Quincey Koziol | 2020-04-20 | 1 | -4/+4 |
| | | |||||
| * | merge and fix conflict | kmu | 2020-01-19 | 1 | -1/+1 |
| |\ | |||||
| * | | fix unused related warnings | kmu | 2020-01-13 | 1 | -1/+1 |
| |/ | |||||
| * | HDFFV-10677 and HDFFV-10661 | Binh-Minh Ribler | 2019-08-28 | 1 | -28/+29 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Description: - Added functions to query chunk information: H5Dget_num_chunks(dset_id, fspace_id, *nchunks) Gets the number of written chunks that intersect with the given dataspace. However, in this version, the intersection is not yet completed. Thus, the number of all written chunks will be returned. H5Dget_chunk_info_by_coord(dset_id, *offset, *filter_mask, *addr, *size) Given a chunk's logical coordinates, returns the chunk's filter, address, and size. H5Dget_chunk_info(dset_id, fspace_id, index, *offset, *filter_mask, *addr, *size) Given a chunk's index, returns the chunk's logical coordinates, filter, address, and size. The chunk belongs to a set of chunks that have nonempty intersection with the specified dataspace. However, in this version, the intersection is not yet completed, and the index is of all the written chunks. These functions comply with VOL. - Fixed some oversights found in the library for the tests in chunk_info.c to work correctly. The returned value from a callback function was not checked in H5EA_iterate(), H5FA_iterate(), and H5D__none_idx_iterate(). This oversight caused a callback function to continue iterating even though it's supposed to stop. Platforms tested: Linux/64 (jelly) Linux/64 (platypus) Darwin (osx1011test) | ||||
* | | Avoid leaving a v1 B-tree used as a chunk index in a bad state | David Young | 2020-06-12 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | that makes assertions fail. Add an optional `close` method to the `H5D_chunk_ops_t`, and use that to release "holds" on metadata cache (MDC) entries. For extensible arrays and v2 B-trees, use the existing `dest`(roy) method to implement `close`. For v1 B-trees and other chunk indices, don't provide `close`: we cannot safely close the v1 B-tree index, and the other indices don't have a meaningful presence in the MDC. Revert my first attempt at making v1 B-tree chunk indices closeable with `dest`. Put my comment about the stopgap fix for VFD SWMR at the right place in src/H5Dchunk.c. | ||||
* | | Repair a bunch of H5_ATTR_SANITY_CHECK uses that should have been | David Young | 2020-05-20 | 1 | -1/+1 |
| | | | | | | | | | | H5_ATTR_NDEBUG_UNUSED. This really makes me wonder what else I have screwed up in this merge.... | ||||
* | | Trim trailing whitespace | Quincey Koziol | 2020-05-20 | 1 | -4/+4 |
| | | |||||
* | | fix unused related warnings | kmu | 2020-05-20 | 1 | -1/+1 |
| | | |||||
* | | Merge all of my changes from merge-back-to-feature-vfd_swmr-attempt-1, | David Young | 2019-12-09 | 1 | -28/+29 |
|/ | | | | | | | | including the merge of `hdffv/hdf5/develop`, back to the branch that Vailin and I share. Now I need to put this branch on a fork with a less confusing name than vchoi_fork! | ||||
* | Add API context interface and use it throughout the library. | Quincey Koziol | 2018-03-15 | 1 | -4/+4 |
| | |||||
* | Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to ↵ | Larry Knox | 2017-04-25 | 1 | -6/+4 |
| | | | | | | | | | | hdf5_1_10 * commit '54957d37f5aa73912763dbb6e308555e863c43f4': Commit copyright header change for src/H5PLpkg.c which was added after running script to make changes. Add new files in release_docs to MANIFEST. Cimmit changes to Makefile.in(s) and H5PL.c that resulted from running autogen.sh. Merge pull request #407 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10_1 to hdf5_1_10_1 Change copyright headers to replace url referring to file to be removed and replace it with new url for COPYING file. | ||||
* | Bring SWMR support in to the main development branch. (Finally!) More tests | Quincey Koziol | 2016-12-02 | 1 | -0/+1 |
| | | | | and the tool and API wrappers will be coming in over the weekend. | ||||
* | [svn-r29770] Description: | Quincey Koziol | 2016-04-23 | 1 | -0/+496 |
Bring 'none' chunk index from revise_chunks branch to trunk. Tested on: MacOSX/64 10.11.4 (amazon) w/serial, parallel & production (w/check-vfd) (h5committest forthcoming) |