summaryrefslogtreecommitdiffstats
path: root/c++
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r25736] Snapshot version 1.9 release 201HDF Tester2014-10-261-1/+1
|
* [svn-r25720] Snapshot version 1.9 release 200HDF Tester2014-10-191-1/+1
|
* [svn-r25693] Snapshot version 1.9 release 199HDF Tester2014-10-121-1/+3
|
* [svn-r25668] Snapshot version 1.9 release 198HDF Tester2014-10-051-1/+1
|
* [svn-r25658] Purpose: Fixed HDFFV-8922Binh-Minh Ribler2014-10-021-0/+14
| | | | | | | | Description: Added notes regarding UTF-8 and extended ASCII, provided in HDFFV-8899, to C++ API. Platforms tested: Linux/32 2.6 (jam) - only in comments
* [svn-r25645] Description:Binh-Minh Ribler2014-10-011-23/+17
| | | | | | | | | Removed the try/block with new/bad_alloc that were unintentionally committed previously. Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) SunOS 5.11 (emu)
* [svn-r25644] Purpose: Fixed HDFFV-8928Binh-Minh Ribler2014-10-017-1/+25
| | | | | | | | | | Description: Followed hints on the JIRA issue to remove several potential memory leaks. Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) SunOS 5.11 (emu)
* [svn-r25640] Purpose: Fixed HDFFV-4259Binh-Minh Ribler2014-09-3012-54/+75
| | | | | | | | | | | | | | Description: - Used H5I_INVALID_HID instead of 0 to initialized member "id" in classes that represent HDF5 objects. For PropList, H5P_DEFAULT has to be used instead of H5I_INVALID_HID. - Added try/catch block to some dynamically allocating memory code and re-throw the bad_alloc exception with a message informing the location of the failure. Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) SunOS 5.11 (emu)
* [svn-r25632] Purpose: Fixed HDFFV-8852Binh-Minh Ribler2014-09-295-5/+14
| | | | | | | | | | | | | | | | Description: H5F_ACC_CREAT was included in the C++ API while the C library doesn't allow it yet. Possibly, in the future, but not now. In addition, the two flags H5F_ACC_RDONLY and H5F_ACC_RDWR were missing from the documentation, causing confusion that appending is not supported. Solution: - Removed H5F_ACC_CREAT from the function until the C library support it - Added H5F_ACC_RDONLY and H5F_ACC_RDWR to the comments to update the documentation Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) SunOS 5.11 (emu)
* [svn-r25627] Snapshot version 1.9 release 197HDF Tester2014-09-281-1/+1
|
* [svn-r25604] Snapshot version 1.9 release 196HDF Tester2014-09-211-1/+1
|
* [svn-r25591] Snapshot version 1.9 release 195HDF Tester2014-09-141-1/+1
|
* [svn-r25563] Snapshot version 1.9 release 194HDF Tester2014-08-311-1/+1
|
* [svn-r25546] Snapshot version 1.9 release 193HDF Tester2014-08-241-1/+1
|
* [svn-r25534] Snapshot version 1.9 release 192HDF Tester2014-08-171-1/+1
|
* [svn-r25506] Snapshot version 1.9 release 191HDF Tester2014-08-031-1/+1
|
* [svn-r25484] Snapshot version 1.9 release 190HDF Tester2014-07-271-1/+1
|
* [svn-r25460] The contents of this directory is the C++ Reference Manual and Mark Evans2014-07-22385-62729/+0
| | | | is generated by Doxygen.
* [svn-r25459] Merged revision(s) 25457 from ↵Mark Evans2014-07-211-4/+10
| | | | | | | | branches/hdf5_1_8_13/c++/src/H5CppDoc.h: Added a sentence suggested by Barbara to the Installation section. Part of HDFFV-8868 work. Tested: Doxygen and Firefox
* [svn-r25446] Changed file in Installation section where users should look ↵Mark Evans2014-07-21385-0/+62729
| | | | | | for instructions from release_docs\INSTALL_Windows.txt to release_docs\INSTALL. Fixes HDFFV-8868. Tested: Doxygen
* [svn-r25441] Changed file in Installation section where users should look ↵Mark Evans2014-07-211-1/+1
| | | | | | for instructions from release_docs\INSTALL_Windows.txt to release_docs\INSTALL. Tested: Doxygen
* [svn-r25434] Snapshot version 1.9 release 189HDF Tester2014-07-201-1/+1
|
* [svn-r25407] Snapshot version 1.9 release 188HDF Tester2014-07-131-1/+1
|
* [svn-r25397] - remove configure checks for MPI_File_get_size and BigMohamad Chaarawi2014-07-074-4/+0
| | | | | MPI_File_set_size as they are supported by most MPI implementations. - fix bug in t_mpi.c (HDFFV-8856)
* [svn-r25395] Snapshot version 1.9 release 187HDF Tester2014-07-061-1/+1
|
* [svn-r25378] Snapshot version 1.9 release 186HDF Tester2014-06-291-1/+1
|
* [svn-r25350] Add more vfd tests to smaller timeout limitsAllen Byrne2014-06-241-0/+1
|
* [svn-r25339] Snapshot version 1.9 release 185HDF Tester2014-06-221-1/+1
|
* [svn-r25317] Edited the Introduction section.Mark Evans2014-06-181-18/+21
| | | | Tested: Doxygen and Firefox
* [svn-r25285] Snapshot version 1.9 release 184HDF Tester2014-06-151-1/+1
|
* [svn-r25241] Snapshot version 1.9 release 183HDF Tester2014-06-081-1/+1
|
* [svn-r25216] Snapshot version 1.9 release 182HDF Tester2014-05-251-1/+1
|
* [svn-r25202] Description:Binh-Minh Ribler2014-05-191-2/+2
| | | | | | | Set OUTPUT_DIRECTORY to cpplus_RM and HTML_OUTPUT to '.' because they were reset by accident causing "bin/release doc" to fail. Ran bin/release to verify the failure was gone.
* [svn-r25199] Snapshot version 1.9 release 181HDF Tester2014-05-181-1/+1
|
* [svn-r25188] Implement change to cmake_ext_mod config folderAllen Byrne2014-05-143-4/+4
| | | | Tested: local linux
* [svn-r25181] Snapshot version 1.9 release 180HDF Tester2014-05-111-1/+1
|
* [svn-r25158] Snapshot version 1.9 release 179HDF Tester2014-05-041-1/+1
|
* [svn-r25126] Snapshot version 1.9 release 178HDF Tester2014-04-271-1/+1
|
* [svn-r25125] Description:Binh-Minh Ribler2014-04-261-1/+1
| | | | | | | | Made printError() virtual as the original; missed it from the previous fix. Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) SunOS 5.11 (emu)
* [svn-r25117] Removed LT_ADD_LIBHDF5_DEPENDENCY configure conditional to roll ↵Larry Knox2014-04-255-13/+4
| | | | | | | | | | | back fix for removing rpaths from l ib files. The fix also removed dependencies on libhdf5, etc. when the --disable-sharedlib-rpath co nfigure option was invoked. Added instead configure variable hardcode_into_lib=no. This removes rpath from lib files on Linux and solaris machines. Tested with h5committest on jam, koala, ostrich and platypus (cmake), and with configure option --disable-sharedlib-rpath on emu, platypus and quail.
* [svn-r25108] Description:Binh-Minh Ribler2014-04-253-6/+29
| | | | | | | | | | - Put back Exception::printError for backward compatibility - Added static member function Exception::printErrorStack to print error stack without an instance of Exception. Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) SunOS 5.11 (emu)
* [svn-r25061] Description:Binh-Minh Ribler2014-04-1722-54/+325
| | | | | | | | | | | Put back overloaded functions for backward compatibility: - were replaced by better prototyped versions, such as Attribute::getName. - were modified to add const to constant arguments. Added notes for future removal in documentation. Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) SunOS 5.11 (emu)
* [svn-r25034] Snapshot version 1.9 release 177HDF Tester2014-04-131-1/+1
|
* [svn-r25020] Description:Binh-Minh Ribler2014-04-128-15/+21
| | | | | | | | | | - Fixed a few comments that Doxygen gave warnings on. - 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) Platforms tested: Linux/32 2.6 (jam) - only changing comments
* [svn-r25019] Description:Binh-Minh Ribler2014-04-111-18/+19
| | | | | | | Updated configuration file to use Doxygen 1.8.5 properly. Verified with Doxygen 1.8.5 on Jam, using bin/release. After committing, this will be checked out and verified again to make sure.
* [svn-r24997] Added compiler versions for mpich to settings file and ↵Larry Knox2014-04-092-9/+19
| | | | | | | | | | | | | 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_LIBRARY_PATH from configure. Prevent potential array subscript out of bounds error in perform/pio_engine.c and sio_engine.c. Tested with h5committest on jam, koala, ostrich and platypus, on emu and kite, and parallel tests on jam, koala and platypus with mpich built with gnu 4.8.2 and with intel compilers.
* [svn-r24996] Description:Binh-Minh Ribler2014-04-094-74/+2196
| | | | | | | | Fixed some minor documentation mistakes. Updated configuration file for Doxygen. Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam)
* [svn-r24994] Purpose: Removed some warningsBinh-Minh Ribler2014-04-096-15/+42
| | | | | | | | | Description: Turned on warnings and removed some of those. Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) SunOS 5.11 (emu)
* [svn-r24991] Purpose: Fixed HDFFV-3384Binh-Minh Ribler2014-04-0917-35/+33
| | | | | | | | | | Description: - Added const to const arguments - Fixed miscellaneous comments Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) SunOS 5.11 (emu)
* [svn-r24983] Purpose: Fix HDFFV-8367Binh-Minh Ribler2014-04-073-0/+191
| | | | | | | | | | | | | | 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 Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) SunOS 5.11 (emu)