Network

 
AuthorCommitMessageCommit Date
Private HDFPrivate HDF
3b00476853e[svn-r25035] Snapshot version 1.8 release 13 (snap8)
Dana RobinsonDana Robinson
785da34bce9[svn-r25033] Purpose: Merged r24993 from the trunk. Adds core VFD write tracking functionality. When enabled, the core VFD will track dirty regions of the file and only write out the changed regions. The new H5Pget/set_core_write_tracking() API call controls this feature. A new "core_paged" VFD target was added to the check-vfd target in test/Makefile.am that runs all tests with the new write tracking functionality. Tested on: 32-bit LE linux (jam) 64-bit ...
Binh-Minh RiblerBinh-Minh Ribler
9b77c507060[svn-r25032] Description: Fixed typos in comments. Platforms tested: Linux/32 2.6 (jam) - very minor
Binh-Minh RiblerBinh-Minh Ribler
6b8d6e870f1[svn-r25031] Purpose: Fix HDFFV-8737 Description: - Fixed a few comments that Doxygen gave warnings on. - Updated configuration file for Doxygen. - Removed stylesheet from configuration so Doxygen will use the default stylesheet and removed the CLANG-related lines to eliminate another error since we're not using that feature, so the lines should not present. (from cpp_doc_config) - Added missing images (merged from trunk-r24996 and r25019) Platforms...
Binh-Minh RiblerBinh-Minh Ribler
a791213860b[svn-r25030] Purpose: Fix HDFFV-8658 Description: Turned on warnings and removed some of those. (merged from trunk-r24994) Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) SunOS 5.11 (emu)
Binh-Minh RiblerBinh-Minh Ribler
170b9d0eed2[svn-r25029] Purpose: Fixed HDFFV-3384 Description: - Added const to const arguments - Fixed miscellaneous comments (merged from trunk-24991) Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) SunOS 5.11 (emu)
Binh-Minh RiblerBinh-Minh Ribler
53a50fa7c88[svn-r25028] Purpose: Fix HDFFV-8367 Description: - Added wrappers to CommomFG for H5Oget_info_by_name() to get a child object's type (requested by user) H5O_type_t childObjType(const H5std_string& objname) const; H5O_type_t childObjType(const char* objname) const; H5O_type_t childObjType(hsize_t index, H5_index_t index_type=H5_INDEX_NAME, H5_iter_order_t order=H5_ITER_INC, const char* objname=".") const; - Added tests to tobject.cpp (merged from trun...
Scot BreitenfeldScot Breitenfeld
19c485a128e[svn-r25027] Merged changes from the trunk to the branch, svn merge -r24929:25009 https://svn.hdfgroup.uiuc.edu/hdf5/trunk/fortran tested: jam (gnu)
Binh-Minh RiblerBinh-Minh Ribler
33956e594a1[svn-r25026] Description: Added tobject.cpp.
Binh-Minh RiblerBinh-Minh Ribler
e92a2e7689d[svn-r25024] Description: Added c++/test/tobject.cpp
Binh-Minh RiblerBinh-Minh Ribler
f61bc97180e[svn-r25023] Description: - Added wrappers to H5Object for H5Iget_name() to get object's name ssize_t getObjName(char *obj_name, size_t buf_size = 0) const; ssize_t getObjName(H5std_string& obj_name, size_t len = 0) const; H5std_string getObjName() const; - Added tests tobject.cpp - Added to various cleanup_* functions in tests to remove generated files - Added an overload H5I_type_t getHDFObjType() to get object's type (merge from trunk-24969) Plat...
Binh-Minh RiblerBinh-Minh Ribler
adff7e81bd0[svn-r25022] Purpose: Code improvement Description: - Overloaded Atribute::getName to take a char* for the attribute name: ssize_t Attribute::getName(char* attr_name, size_t buf_size) - Switched the arguments in this function: ssize_t getName(size_t buf_size, H5std_string& attr_name) so it became: ssize_t getName(H5std_string& attr_name, size_t buf_size) The second argument is default to 0, and can be skipped. - Removed this function: ...
Binh-Minh RiblerBinh-Minh Ribler
d9703d66de5[svn-r25021] Description: Added proper deallocation/allocation to test. Revised incorrect comments. (merged from trunk-r24929) Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) SunOS 5.11 (emu)
Dana RobinsonDana Robinson
f466a5d2988[svn-r25018] Purpose: Merged r24893, r24961, r24965 from trunk. Fix for thread-local storage resource leaks on Windows with Win32 threads. Prohibits thread-safe + C++/Fortran/static library in CMake. Tested on: 64-bit Windows 7 w/ Visual Studio 2012
Larry KnoxLarry Knox
17a1f1a5976[svn-r25017] Merge r24997 changes from trunk. Added compiler versions for mpich to settings file and configure summary. For make installcheck, compile and run installed examples using the installed scripts. They were being compiled but not run. Add Fortran2003 examples to the run-ex-fortran script when fortran2003 is enabled. Set flag to -O3 in production mode for Intel compilers other than those with specified other settings. Gentoo patches: Remove unnecessary setting of LD_LIBRA...
Dana RobinsonDana Robinson
29791cf160f[svn-r25016] Purpose: Merged r24857 from the trunk. Changes to configure.ac so that --with-pthreads is not required when the --enable-threadsafe configure option is set as long as the Pthreads library is in a standard location. Tested on: 32-bit LE linux (jam) with --enable-threadsafe 64-bit LE linux (koala) with --enable-threadsafe 64-bit BE linux (ostrich) with --enable-threadsafe
Dana RobinsonDana Robinson
14c09fc4000[svn-r25015] Purpose: Updated RELEASE.txt with more information about the big.c test changes. Tested on: N/A - no code changes
Dana RobinsonDana Robinson
8a524752454[svn-r25014] Purpose: Merge of r24937 from the trunk Adds H5free_memory to the API. This function should be used to free memory allocated by the library (e.g., returned values from H5Tget_tag, H5Pget_class_name, etc.). This is mainly to help Windows applications deal with multiple CRT instances, but can also be helpful when a debug memory manager is being used or when the HDF5 API is being wrapped for managed languages like Python and Java. Tested on: 32...
Dana RobinsonDana Robinson
6240fb24e6e[svn-r25013] Purpose: Merge of r24416 from the trunk Fixes a number of compiler warnings in the dsets test. Tested on: 32-bit LE linux (jam) - very minor changes, mostly casts
Allen ByrneAllen Byrne
051c3b5e68c[svn-r25010] Add missing mod file to install
Allen ByrneAllen Byrne
b70a2a6519f[svn-r25006] Update release docs
Allen ByrneAllen Byrne
2a89a9571db[svn-r25003] Add missing mod file to install
Albert ChengAlbert Cheng
a9110fa0d15[svn-r25000] Bugfix: HDFFV-8639 h5diff segfaults with user's files Solution: Added a variable to indicate if real data are in the buffer and will call H5Dvlen_reclaim() only when real data are in the buffer. Tested: with the user provided data files and no more segmentaion fault. Also h5committ tested.
Quincey KoziolQuincey Koziol
7401da00f65[svn-r24992] Update release notes with information about the collective point selection support and removal of the MPI-POSIX VFD.
Albert ChengAlbert Cheng
b95d364d842[svn-r24990] Problem: AIX compiler complains that: ex_ds1.f90, line 89.16: 1512-050 (W) Field separator is missing, in literal FMT specifier, after edit descriptor X. A comma is assumed. Line 89: WRITE(*,'(/,5X 3(A,1X),I0,A,L1)') 'Is',TRIM(DS_1_NAME),& Solution: Added the missing comma after "5X". Tested: AIX system.
Allen ByrneAllen Byrne
5b87658bd0f[svn-r24981] Add missing file
Allen ByrneAllen Byrne
ab2d9f1e9c4[svn-r24980] HDFFV-8290: Merge automake 1.14.1 changes from trunk Tested: h5committest
Elena PourmalElena Pourmal
fadc2d8c61c[svn-r24971] Maintenance: Fixed two typos in the comments; see HDFFV-8714
Private HDFPrivate HDF
4770fc0aad9[svn-r24968] Snapshot version 1.8 release 13 (snap7)
Scot BreitenfeldScot Breitenfeld
3936548bc56[svn-r24930] Merged changes in the trunk to the branch, svn merge -r24650:24929 https://svn.hdfgroup.uiuc.edu/hdf5/trunk/fortran . tested: jam (intel, pgi, gnu)
Binh-Minh RiblerBinh-Minh Ribler
963bace0d15[svn-r24928] Purpose: Fix HDFFV-7907 Description: Added transform property list functions // Constructor creates a dataset transform property list. DSetMemXferPropList(const char* expression); // Sets data transform expression. void setDataTransform(const char* expression) const; void setDataTransform(const H5std_string& expression) const; // Gets data transform expression. ssize_t getDataTransform(char* exp, size_t buf_size=0) con...
Private HDFPrivate HDF
63c5964bb41[svn-r24927] Snapshot version 1.8 release 13 (snap6)
Allen ByrneAllen Byrne
9358ecc1a3f[svn-r24921] Add MINGW check
Allen ByrneAllen Byrne
441eee4ab10[svn-r24915] Correct merge mistake
Binh-Minh RiblerBinh-Minh Ribler
764128aaf24[svn-r24913] Purpose: Fix HDFFV-8642 Description: Added CompType::setSize(size_t size) to set size for compound data type as H5Tset_size had been changed. Merged from trunk-24912 Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) SunOS 5.11 (emu)
Allen ByrneAllen Byrne
d9020f2e353[svn-r24906] Merge latest CMake changes from trunk. Tested: local linux
Binh-Minh RiblerBinh-Minh Ribler
3944dcb308d[svn-r24902] Description: Fixed mismatched function prototype/definition that caused daily test failure on emu/production/HDF5TestExpress=1. Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) SunOS 5.11 (emu)
Quincey KoziolQuincey Koziol
a7d3f5b5b15[svn-r24894] Description: Bring r24869 & r24875 from trunk to 1.8 branch: Clean up more compiler warnings, plus merge a few Coverity bug fixes from the hdf5_1_8_coverity branch back to the trunk: r20877: Purpose: Fix coverity issue 1723 Description: Modified test_generate in hl/test_image to close file "f" before exit, even if an error occurs. r20879: Issue 63: change check of return of H5Tget_nmembers to <=0. No need to go futher if call fails as well as empty. r20881: Coverity ...
Quincey KoziolQuincey Koziol
708e8077c2c[svn-r24879] Description: Missed a file in the last checkin.
Quincey KoziolQuincey Koziol
25147d5567f[svn-r24878] Description: Bring r24864 from trunk to 1.8 branch: Remove all traces of MPI-POSIX VFD and GPFS detection/code. Remove remaining traces of stream VFD. Remove testpar/t_posix_compliant test (it's not actually verifying anything). Clean up H5D__mpio_opt_possible() further. Moved environment variable that disables MPI collective operations into MPI-IO VFD (instead of it being in src/H5S.c). A few other small code cleanups. Tested on: Mac OS...
Private HDFPrivate HDF
f5a2f3d611c[svn-r24871] Snapshot version 1.8 release 13 (snap5)
Binh-Minh RiblerBinh-Minh Ribler
74079aa0de0[svn-r24870] Description: - Added another overload for char* argument: ssize_t getComment(const char* name, const size_t buf_size, char* comment) - Changed default value to 0 for the other two getComment methods - Added HDmemset to after every char string allocation to clear the buffer - Added a null terminator to the comment returned from the C call, in getComment methods - Some minor cleanup Merged from trunk: -r24865 -r24867 Platforms tested: Lin...
Binh-Minh RiblerBinh-Minh Ribler
e18ee63c5a5[svn-r24868] Purpose: Applied user patch, HDFFV-8623 Description: Applied patch from user Jason Newton. JIRA issue HDFFV-8623, patch 0009, improve c++ compatibility with exceptions. All additions of "throw()" are included. Exception::what() is not added because it is not necessary. It was suggested for the name, which follows stdlib. Merged from trunk -r24830 Platforms tested: SunOS 5.11 (emu) Linux/32 2.6 (jam) Linux/64 2.6 (koala)/PGI compilers
Quincey KoziolQuincey Koziol
f2aa62ec769[svn-r24810] Description: Bring r24803 & r24804 from trunk to 1.8 branch: r24804: Brought changes from Coverity branch back to trunk, and cleaned up misc. other warnings & formatting issues: r20833: Fixed Coverity 667 and 668 with real integer overflow tests this time. r20834: Use HDstrncpy and HDstrncat. --gh r20835: Change to use strncpy - use base_len + 1 for line 156, use HDstrlen(path) + 1 for line 159 r20836: Fixed coverity 585 by casting output o...
Albert ChengAlbert Cheng
4ffe2f78c52[svn-r24800] HDFFV-8704: Mac OS X 10.6 (Snow Leopard) is retired from supported platforms.
Neil FortnerNeil Fortner
a14244c6a64[svn-r24794] Port r24757 from trunk to 1.8 branch. Tested: ostrich, platypus (h5committest, apparent system issue on jam and koala) Log from r24635: Change assertion to condition check/error return. Should fix periodic assertion failure in fheap test (in test that is expected to fail cleanly). Fix typo in H5detect.c Tested: ostrich, platypus (h5committest - jam and koala having issues)
Albert ChengAlbert Cheng
41f660dd17c[svn-r24787] Updated information for platform Mac 10.8 and 10.9. Moved Mac OSX 10.6 (fred) to also tested platforms.
Quincey KoziolQuincey Koziol
e2c3ecd8252[svn-r24785] Description: Bring r24769 & r24772 from trunk to 1.8 branch: Check in Mohamad's changes to support collective I/O on point selections, along with some other minor cleanups. Correct some dynamically sized arrays that fail on Windows. Tested on: Mac OSX/64 10.9.2 (amazon) w/parallel (And has been through the daily test regime on the trunk)
Private HDFPrivate HDF
a8a8652ebd5[svn-r24771] Snapshot version 1.8 release 13 (snap4)
Albert ChengAlbert Cheng
7f5c65bdc8a[svn-r24760] Mac OS X 10.9 Mavericks is added to the support feature list.