summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove H5VL_FILE_CACHE_VOL_CONN from file specific callbacks, as it turns outQuincey Koziol2018-12-177-67/+15
| | | | | | not to be necessary. Also, correct _MSC_VER #ifdef
* Merge pull request #1388 in HDFFV/hdf5 from ↵Dana Robinson2018-12-173-296/+301
|\ | | | | | | | | | | | | | | ~DEROBINS/hdf5_der:vol_optional_enum_to_macros to develop * commit '9f175afce8c08bf6193e45ce391e05e4198dd61c': Updated va_arg-->HDva_arg in the native VOL connector. Added HD to va_* calls in a couple of library files.
| * Updated va_arg-->HDva_arg in the native VOL connector.Dana Robinson2018-12-171-179/+179
| |
| * Added HD to va_* calls in a couple of library files.Dana Robinson2018-12-172-117/+122
| |
* | Merge pull request #1387 in HDFFV/hdf5 from ↵Dana Robinson2018-12-174-50/+64
|\ \ | |/ |/| | | | | | | | | | | | | ~DEROBINS/hdf5_der:strtok_windows_fix to develop * commit 'b0457117d867d9850d042d7c3f71a747899b932e': Further va_list improvements. Added a helpful comment to the va_copy() Windows hack. Added a work-around for va_copy() on pre-2013 versions of Visual Studio.
| * Further va_list improvements.Dana Robinson2018-12-173-50/+57
| |
| * Added a helpful comment to the va_copy() Windows hack.Dana Robinson2018-12-171-0/+4
| |
| * Added a work-around for va_copy() on pre-2013 versions of Visual Studio.Dana Robinson2018-12-171-0/+3
| |
* | Merge pull request #1385 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to developAllen Byrne2018-12-177-3/+78
|\ \ | |/ |/| | | | | * commit '8dbadb41a3b23d6d74effee7bef0302fd81b80a6': HDFFV-10663 add new function H5Fis_accessible
| * HDFFV-10663 add new function H5Fis_accessibleAllen Byrne2018-12-177-3/+78
| |
* | Merge pull request #1381 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:vol_tweaks to ↵Dana Robinson2018-12-1720-169/+201
|\ \ | |/ |/| | | | | | | | | develop * commit '9ae9b3ef513613bb2fca15f96461a156148c2627': Moved the native VOL connector's optional enums to the public headers and renamed to include native/NATIVE in the name.
| * Moved the native VOL connector's optional enums to theDana Robinson2018-12-1520-169/+201
| | | | | | | | | | public headers and renamed to include native/NATIVE in the name.
* | Merge pull request #1378 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to developAllen Byrne2018-12-172-1/+3
|\ \ | | | | | | | | | | | | | | | * commit '1e4c7bf9c96dfb353b643f41c136a8fa3f511df2': Use H5I_INVALID_HID HDFFV-10632 update new files
| * \ Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)Allen Byrne2018-12-162-337/+343
| |\ \ | | | | | | | | | | | | | | | | | | | | * commit '50ca26f3ec428de408040335f2a2999e750d98b3': Updated the passthru VOL connector: * snprintf --> sprintf (for Windows compat) * tabs --> spaces * removed spurious parens from returns * Changed the logging macro to something less clash-prone Make sure to free copy of VOL connector's name when H5VL_register_connector fails
| * | | Use H5I_INVALID_HIDAllen Byrne2018-12-151-1/+1
| | | |
| * | | HDFFV-10632 update new filesAllen Byrne2018-12-141-0/+2
| | | |
* | | | Merge pull request #1383 in HDFFV/hdf5 from ↵Dana Robinson2018-12-161-0/+1
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | | | | | ~DEROBINS/hdf5_der:strtok_windows_fix to develop * commit '1b5190011bde5f2f47b01429cd97c11ade66f911': Added #define to use strtok_s instead of strtok_r on Windows.
| * | | Added #define to use strtok_s instead of strtok_r on Windows.Dana Robinson2018-12-161-0/+1
| | |/ | |/|
* | | Merge pull request #1382 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:develop to ↵Dana Robinson2018-12-161-334/+337
|\ \ \ | |/ / |/| | | | | | | | | | | | | | develop * commit 'e21dec94d85b02b6dd3b2020cf026414cea1eb0d': Updated the passthru VOL connector: * snprintf --> sprintf (for Windows compat) * tabs --> spaces * removed spurious parens from returns * Changed the logging macro to something less clash-prone
| * | Updated the passthru VOL connector:Dana Robinson2018-12-161-334/+337
|/ / | | | | | | | | | | | | * snprintf --> sprintf (for Windows compat) * tabs --> spaces * removed spurious parens from returns * Changed the logging macro to something less clash-prone
* | Merge pull request #1379 in HDFFV/hdf5 from ~JHENDERSON/hdf5:develop to developJordan Henderson2018-12-151-3/+6
|\ \ | |/ |/| | | | | * commit '74d167d738f719fc1076ed16360e9fd5b7ba4c98': Make sure to free copy of VOL connector's name when H5VL_register_connector fails
| * Make sure to free copy of VOL connector's name when H5VL_register_connector ↵Jordan Henderson2018-12-141-3/+6
|/ | | | fails
* Merge pull request #1377 in HDFFV/hdf5 from stackable_vol_fix_05 to developQuincey Koziol2018-12-136-14/+20
|\ | | | | | | | | * commit '833a4f73fd8dc696f8bf500cd842d88949bb1519': Fix plugin code from referencing invalid key ID value, and also switch from strtok() to strtok_r() to avoid possible interference with / to application use of strtok().
| * Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/hdffv/hdf5 into ↵Quincey Koziol2018-12-136-3/+97
| |\ | |/ |/| | | develop
* | Merge pull request #1375 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to developAllen Byrne2018-12-131-0/+20
|\ \ | | | | | | | | | | | | * commit 'f9f6e9fe24d8b0996a79af57d80e21a950f5009f': Still need the stamp1 files if PREGEN
| * | Still need the stamp1 files if PREGENAllen Byrne2018-12-131-0/+20
|/ /
* | Merge pull request #1374 in HDFFV/hdf5 from ~BYRN/hdf5_merge_adb:develop to ↵Allen Byrne2018-12-131-1/+3
|\ \ | | | | | | | | | | | | | | | | | | develop * commit '248442eb00ec254bf632ddf6a0f62ed5f442a3f0': If MPI is enabled java will not compile because of include.
| * | If MPI is enabled java will not compile because of include.Allen Byrne2018-12-131-1/+3
| | |
* | | Merge pull request #1371 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to developAllen Byrne2018-12-132-1/+7
|\ \ \ | |/ / |/| | | | | | | | | | | * commit '98309270710fea1aee7012ded776be4260c63df8': TRILABS - exclude host info lines HDFFV-10660 Add new files to OUTPUT section of custom commands
| * | TRILABS - exclude host info linesAllen Byrne2018-12-131-1/+1
| | |
| * | HDFFV-10660 Add new files to OUTPUT section of custom commandsAllen Byrne2018-12-131-0/+6
|/ /
* | Merge pull request #1368 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to developAllen Byrne2018-12-131-1/+0
|\ \ | | | | | | | | | | | | * commit '6a87b59aeeda7839ff7b3b9f129192bd1579c6fa': HDFVIEW-4 Duplicate line
| * | HDFVIEW-4 Duplicate lineAllen Byrne2018-12-121-1/+0
| | |
* | | Merge pull request #1369 in HDFFV/hdf5 from ~JHENDERSON/hdf5:develop to developJordan Henderson2018-12-132-0/+67
|\ \ \ | | | | | | | | | | | | | | | | | | | | * commit '76c0d8c434186107176fc83a0ce4e94b584196ae': Add test for H5Aget_info(_by_name/_by_idx) NULL info pointer align H5Aget_info behavior with H5Gget_info when null attribute pointer is supplied
| * | | Add test for H5Aget_info(_by_name/_by_idx) NULL info pointerJordan Henderson2018-12-131-0/+65
| | | |
| * | | align H5Aget_info behavior with H5Gget_info when null attribute pointer is ↵Jordan Henderson2018-12-121-0/+2
|/ / / | | | | | | | | | supplied
| | * Fix plugin code from referencing invalid key ID value, and also switch fromQuincey Koziol2018-12-136-14/+20
| |/ |/| | | | | | | strtok() to strtok_r() to avoid possible interference with / to application use of strtok().
* | Merge pull request #1367 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:develop to develophdftest2018-12-121-2/+2
|\ \ | |/ |/| | | | | * commit 'deb7d2fb9714acc8222815328f71b0aae7e74275': Use version 2 functions in test file to address compile errors for --with-default-api-version=v16 option.
| * Use version 2 functions in test file to address compile errors forLarry Knox2018-12-121-2/+2
| | | | | | | | --with-default-api-version=v16 option.
* | Merge pull request #1349 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to developAllen Byrne2018-12-12105-505/+848
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '139a12d13cda046fd3cd64a4f097eb3485f50173': HDFFV-10632 correct number HDFFV-10632 stder/stdout change note Add stamp files for generated files HDFFV-10632 update autotools test scripts to match cmake HDFFV=10632 test cleanup Fix special macro stdout as empty Need nonexistent file to skip stdout compare HDFFV-10632 - split stderr and stdout in cmake
| * | HDFFV-10632 correct numberAllen Byrne2018-12-121-1/+1
| | |
| * | HDFFV-10632 stder/stdout change noteAllen Byrne2018-12-121-0/+9
| | |
| * | Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)Allen Byrne2018-12-126-283/+1454
| |\ \ | |/ / |/| | | | | | | | | | | | | | * commit '1be974ff963e2e538090bb3e65ba66feb93d5c68': HDFVIEW-4 note HDFVIEW-4 removed unused functions HDFVIEW-4 add datatype read to H5A like H5D
* | | Merge pull request #1365 in HDFFV/hdf5 from ~BYRN/hdf5_merge_adb:develop to ↵Allen Byrne2018-12-127-293/+1470
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | | | develop * commit 'ef6c80bbdbe6ce1ee4665a352099976d0fddf255': HDFVIEW-4 note HDFVIEW-4 removed unused functions HDFVIEW-4 add datatype read to H5A like H5D
| * | HDFVIEW-4 noteAllen Byrne2018-12-121-3/+12
| | |
| * | HDFVIEW-4 removed unused functionsAllen Byrne2018-12-125-180/+0
| | |
| * | HDFVIEW-4 add datatype read to H5A like H5DAllen Byrne2018-12-105-200/+1548
|/ /
| * Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)Allen Byrne2018-12-101-2/+2
| |\ | |/ |/| | | | | * commit '6f52793adcd5a14aa63731e3c33c9737b5a04d16': Minor tweak to address JIRA HDFFV-10611 (which was already fixed).
* | Merge pull request #1363 in HDFFV/hdf5 from ↵Dana Robinson2018-12-081-2/+2
|\ \ | | | | | | | | | | | | | | | | | | ~DEROBINS/hdf5_der:develop_minor_pr to develop * commit '5d9a93b61d374c427554dd2ff9574539bc8861ab': Minor tweak to address JIRA HDFFV-10611 (which was already fixed).
| * | Minor tweak to address JIRA HDFFV-10611 (which was already fixed).Dana Robinson2018-12-081-2/+2
|/ /