Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #2434 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop | Allen Byrne | 2020-03-04 | 2 | -16/+16 |
|\ | | | | | | | | | | | * commit '24298a031f0b7f6a04364cfbfbdd9c8b6cc1a038': Remove system command from valgrind reports Whitespace | ||||
| * | Remove system command from valgrind reports | Allen Byrne | 2020-03-02 | 1 | -2/+2 |
| | | |||||
| * | Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop) | Allen Byrne | 2020-03-01 | 2 | -3/+3 |
| |\ | |/ |/| | | | | | * commit 'a01ac97ba509e51905b816e8a29b5d0b2bc8be87': Fix incorrect FUNC_LEAVE macro (should match FUNC_ENTER_*_TAG). | ||||
* | | Merge pull request #2427 in HDFFV/hdf5 from ~JAKE.SMITH/hdf5:develop to develop | Jake Smith | 2020-03-01 | 2 | -3/+3 |
|\ \ | | | | | | | | | | | | | * commit '2d9a81878d05732725f96d7d9b20ada8dfd2a146': Fix incorrect FUNC_LEAVE macro (should match FUNC_ENTER_*_TAG). | ||||
| * | | Fix incorrect FUNC_LEAVE macro (should match FUNC_ENTER_*_TAG). | Jacob Smith | 2020-02-28 | 2 | -3/+3 |
| | | | |||||
| | * | Whitespace | Allen Byrne | 2020-02-29 | 1 | -14/+14 |
| |/ |/| | |||||
* | | Merge pull request #2431 in HDFFV/hdf5 from ~KMU/hdf5:bugfix/type_cast to ↵ | Kimmy Mu | 2020-02-29 | 1 | -2/+2 |
|\ \ | |/ |/| | | | | | | | | | develop * commit 'b5cf422799797cf0b573cc9992f866381bd63054': revert type cast | ||||
| * | revert type cast | kmu | 2020-02-28 | 1 | -2/+2 |
| | | |||||
* | | Merge pull request #2419 in HDFFV/hdf5 from revise_get_offset to develop | Quincey Koziol | 2020-02-28 | 5 | -37/+21 |
|\ \ | |/ |/| | | | | | * commit '38af6ee3d59a8e836f4c62dd533ddabd914c7abb': Switch the 'get offset' operation from a dataset 'get' callback to a [native] dataset 'optional' operation. | ||||
| * | Switch the 'get offset' operation from a dataset 'get' callback to a [native] | Quincey Koziol | 2020-02-28 | 5 | -37/+21 |
|/ | | | | dataset 'optional' operation. | ||||
* | Merge pull request #2411 in HDFFV/hdf5 from ~DYOUNG/werror:darwin-barriers ↵ | Larry Knox | 2020-02-28 | 1 | -1/+139 |
|\ | | | | | | | | | | | | | | | | | | | | | to develop * commit '803d805c74466a9d736455930b17de2d9f5cb02d': Complete the comment on thread_main(), explaining why the barrier is used. The first implementation seemed to allow for the possibility that a thread could block at the barrier, wake and exit the barrier, re-acquire the barrier lock and increase `nentered` before the other blocked threads woke and checked `nentered % count == 0`. Then the other blocked threads would check `nentered % count == 0` and, finding it false, go back to sleep in the barrier. This new implementation waits for a looser condition to obtain so that threads don't go back to sleep in the barrier. Test the right condition for the EBUSY return in pthread_barrier_destroy(). s/exit_failure/EXIT_FAILURE/g Implement pthread_barrier(3) for Darwin using a counter, condition variable, and mutex. Untested. | ||||
| * | Complete the comment on thread_main(), explaining why the barrier is used. | David Young | 2020-02-27 | 1 | -1/+9 |
| | | |||||
| * | The first implementation seemed to allow for the possibility that a thread | David Young | 2020-02-27 | 1 | -1/+8 |
| | | | | | | | | | | | | | | | | | | could block at the barrier, wake and exit the barrier, re-acquire the barrier lock and increase `nentered` before the other blocked threads woke and checked `nentered % count == 0`. Then the other blocked threads would check `nentered % count == 0` and, finding it false, go back to sleep in the barrier. This new implementation waits for a looser condition to obtain so that threads don't go back to sleep in the barrier. | ||||
| * | Test the right condition for the EBUSY return in pthread_barrier_destroy(). | David Young | 2020-02-27 | 1 | -1/+1 |
| | | |||||
| * | s/exit_failure/EXIT_FAILURE/g | David Young | 2020-02-27 | 1 | -2/+2 |
| | | |||||
| * | Implement pthread_barrier(3) for Darwin using a counter, condition variable, | David Young | 2020-02-27 | 1 | -0/+123 |
| | | | | | | | | and mutex. Untested. | ||||
* | | Merge pull request #2415 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:develop to develop | Larry Knox | 2020-02-28 | 2 | -2/+2 |
|\ \ | | | | | | | | | | | | | * commit '811988f82c182012704942d333ee7800f4a78349': Modfy expression to match mpicc build with Intel as intel compiler, not gcc. | ||||
| * | | Modfy expression to match mpicc build with Intel as intel compiler, not | Larry Knox | 2020-02-27 | 2 | -2/+2 |
|/ / | | | | | | | gcc. | ||||
* | | Merge pull request #2414 in HDFFV/hdf5 from ~BRTNFLD/hdf5_msb:develop to develop | Scot Breitenfeld | 2020-02-27 | 1 | -6/+19 |
|\ \ | | | | | | | | | | | | | * commit 'dde7e73d9fe8cc3b849767790aa9b13ee2d600cd': Fixed issue building HDF5 with NAG Fortran 7.0. | ||||
| * | | Fixed issue building HDF5 with NAG Fortran 7.0. | M. Scot Breitenfeld | 2020-02-27 | 1 | -6/+19 |
| | | | | | | | | | | | | | | | | | | Accounted for the additon of half precision floating-point with a KIND=16. HDFFV-11033 | ||||
* | | | Merge pull request #2412 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop | Allen Byrne | 2020-02-27 | 1 | -2/+3 |
|\ \ \ | |/ / |/| | | | | | | | | * commit '6686cac564f5d0015a32b92e4478002069c973ee': Add java version and reference libsettings | ||||
| * | | Add java version and reference libsettings | Allen Byrne | 2020-02-27 | 1 | -2/+3 |
|/ / | |||||
* | | Merge pull request #2409 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop | Allen Byrne | 2020-02-27 | 16 | -266/+257 |
|\ \ | |/ |/| | | | | | | | * commit '13f5b3aee20d1d65f56dc08f088e0f218da5cf37': Update examples and fix old version references. Move MODEL check to before usage in CTestScript.cmake. | ||||
| * | Update examples and fix old version references. | Allen Byrne | 2020-02-26 | 15 | -259/+249 |
| | | |||||
| * | Move MODEL check to before usage in CTestScript.cmake. | Allen Byrne | 2020-02-26 | 2 | -7/+8 |
|/ | |||||
* | Merge pull request #2405 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop | Allen Byrne | 2020-02-25 | 5 | -15/+40 |
|\ | | | | | | | | | | | * commit '2af8a87af0d7a1589a4df22d16b2d2513876e7a9': Copy generated files instead creating twice Fix standalone link | ||||
| * | Copy generated files instead creating twice | Allen Byrne | 2020-02-25 | 1 | -8/+32 |
| | | |||||
| * | Fix standalone link | Allen Byrne | 2020-02-25 | 4 | -7/+8 |
|/ | |||||
* | Merge pull request #2398 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop | Allen Byrne | 2020-02-25 | 4 | -16/+12 |
|\ | | | | | | | | | * commit '04e67af8f968b2c6f50cb42990d3dfa79aa353d9': Fix Fortran macro use and jni comment | ||||
| * | Fix Fortran macro use and jni comment | Allen Byrne | 2020-02-25 | 4 | -16/+12 |
|/ | |||||
* | Merge pull request #2394 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop | Allen Byrne | 2020-02-24 | 6 | -22/+172 |
|\ | | | | | | | | | | | | | | | * commit 'cf58730177d60fd7311582a29539d87f10a7d88e': Update Windows platforms HDFFV-11036 add release note HDFFV-11036 add file compare test process Correct usage of add_compile_definitions | ||||
| * | Update Windows platforms | Allen Byrne | 2020-02-24 | 1 | -5/+1 |
| | | |||||
| * | Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop) | Allen Byrne | 2020-02-24 | 1 | -0/+2 |
| |\ | |/ |/| | | | | | * commit 'd24afb233383aa6c945fad430eb1b66edc4d6c63': Add missing MANIFEST entry, ./doc/code-conventions.md . | ||||
* | | Merge pull request #2385 in HDFFV/hdf5 from manifest-repair to develop | David Young | 2020-02-24 | 1 | -0/+2 |
|\ \ | | | | | | | | | | | | | * commit '921278c604b3129c1ff5066f0a2b94abcb3aa8f7': Add missing MANIFEST entry, ./doc/code-conventions.md . | ||||
| * | | Add missing MANIFEST entry, ./doc/code-conventions.md . | David Young | 2020-02-20 | 1 | -0/+2 |
| | | | |||||
| | * | HDFFV-11036 add release note | Allen Byrne | 2020-02-24 | 1 | -1/+8 |
| | | | |||||
| | * | HDFFV-11036 add file compare test process | Allen Byrne | 2020-02-24 | 4 | -13/+162 |
| | | | |||||
| | * | Correct usage of add_compile_definitions | Allen Byrne | 2020-02-23 | 1 | -3/+1 |
| |/ |/| | |||||
* | | Merge pull request #2390 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop | Larry Knox | 2020-02-22 | 87 | -337/+436 |
|\ \ | | | | | | | | | | | | | * commit '666205a55f01698a71484f504bc8eb9541800f25': TRILAB-142 Change minimum CMake version to 3.12 | ||||
| * | | TRILAB-142 Change minimum CMake version to 3.12 | Allen Byrne | 2020-02-21 | 87 | -337/+436 |
|/ / | |||||
* | | Merge pull request #2388 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop | Allen Byrne | 2020-02-21 | 4 | -11/+11 |
|\ \ | | | | | | | | | | | | | | | | | | | * commit '380fe7cfdfd98461cb1bff54bad4de0ee9904ad6': Fix always true issue because member is not dynamically allocated CMake cleanup HDFFV-11032 fix JNI call | ||||
| * | | Fix always true issue because member is not dynamically allocated | Allen Byrne | 2020-02-21 | 1 | -7/+7 |
| | | | |||||
| * | | CMake cleanup | Allen Byrne | 2020-02-21 | 2 | -2/+2 |
| | | | |||||
| * | | HDFFV-11032 fix JNI call | Allen Byrne | 2020-02-21 | 1 | -2/+2 |
|/ / | |||||
* | | Merge pull request #1988 in HDFFV/hdf5 from ~JHENDERSON/hdf5_pr:develop to ↵ | Jordan Henderson | 2020-02-21 | 2 | -3/+57 |
|\ \ | | | | | | | | | | | | | | | | | | | develop * commit '51b8c63864c72de9a7b40c00673fe07510fec27e': Partial fix for HDFFV-10792 | ||||
| * \ | Merge develop | Jordan Henderson | 2020-02-21 | 723 | -22786/+57999 |
| |\ \ | |/ / |/| | | |||||
* | | | Merge pull request #2384 in HDFFV/hdf5 from h5f_decode_length to develop | David Young | 2020-02-20 | 1 | -1/+1 |
|\ \ \ | | | | | | | | | | | | | | | | | * commit '158ba17be0ad40e3e47a951c1340710608347772': Replace the old H5F_DECODE_LENGTH() implementation with one that initializes the variable it's loading on every path. | ||||
| * | | | Replace the old H5F_DECODE_LENGTH() implementation with one that | David Young | 2020-02-19 | 1 | -1/+1 |
| | |/ | |/| | | | | | | | initializes the variable it's loading on every path. | ||||
* | | | Merge pull request #2379 in HDFFV/hdf5 from ~BRTNFLD/hdf5_msb:develop to develop | Scot Breitenfeld | 2020-02-19 | 2 | -1/+4 |
|\ \ \ | |/ / |/| | | | | | | | | * commit 'def3f1a12e7c2ec165f40b9839f6bfe3da59807b': Corrected INTERFACE INTENT(IN) to INTENT(OUT) for buf_size inh5fget_file_image_f. | ||||
| * | | Corrected INTERFACE INTENT(IN) to INTENT(OUT) for buf_size ↵ | M. Scot Breitenfeld | 2020-02-18 | 2 | -1/+4 |
| | | | | | | | | | | | | | | | | | | inh5fget_file_image_f. HDFFV-11029 |