summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r3236] Purpose:Quincey Koziol2001-01-048-49/+65
| | | | | | | | Clean up code. Description: Cleaned up various compiler warnings. Platforms tested: FreeBSD 4.2 (hawkwind)
* [svn-r3235] Purpose:Quincey Koziol2001-01-042-2/+2
| | | | | | | | Improve compiler warnings Description: Added several more warning flags to the gcc compiler flags.. Platforms tested: FreeBSD 4.2 (hawkwind)
* [svn-r3234] MuQun Yang2001-01-031-0/+4
| | | | | | | | | | | | Purpose: a bug fix Description: without explicitly including stdio.h in this file, it will fail in compiling at the first time of building up the library. It needs to be recompiled separetely. Now it can work. The real reason is to be investigated. Solution: adding include <stdio.h> for win32. Platforms tested: win 2000
* [svn-r3233] MuQun Yang2001-01-031-1/+0
| | | | | | | | | | | | | | | Purpose: a bug fix Description: delete the line for unused defined variables on windows. Solution: delete the line. Platforms tested: windows 2000 [machines you have tested the changed version. This is absolute important. Test it out on at least two or three different platforms such as Big-endian-32bit (SUN/IRIX), little-endian-32(LINUX) and 64-bit (IRIX64/UNICOS/DEC-ALPHA) would be good.]
* [svn-r3232] MuQun Yang2001-01-031-4/+4
| | | | | | | | | | | Purpose: a bug fix Description: Get rid of warning information for comments on windows(**/* */) Solution: add a space between ** and /*. Now it is ** /* Platforms tested: windows 2000
* [svn-r3231] Purpose:Quincey Koziol2001-01-031-2/+3
| | | | | | | | | Improved debugging output Description: Added a little more descriptive information to the output for h5debug when debugging B-trees in the file. Platforms tested: FreeBSD 4.2 (hawkwind)
* [svn-r3230] Purpose:Quincey Koziol2001-01-036-3/+147
| | | | | | | | Extra testing Description: Added tests to dump empty datasets to the h5dump and h5ls testing. Platforms tested: FreeBSD 4.2 (hawkwind)
* [svn-r3229] Purpose:Quincey Koziol2001-01-031-3/+9
| | | | | | | | Bug fix Description: Close several potential resource leaks in failure conditions. Platforms tested: FreeBSD 4.2 (hawkwind)
* [svn-r3228] Purpose:Quincey Koziol2001-01-034-75/+125
| | | | | | | | | | | | | | | | | | | | Bug fixes Description: Fix two bugs: - Datasets with vlen datatype which were created but not written to were not being read back in correctly from the file. - If an existing space conversion path was found for a conversion, it was possible that the optimized read/write routines would be used inappropriately. Solution: Patched vlen datatype conversion code to correctly handle zero-length sequences. Added a check to the space conversion code to make certain that the optimized conversion routines are still appropriate when an existing path is found. Platforms tested: FreeBSD 4.2 (hawkwind)
* [svn-r3227] ./hdf5/tools/h5ls.cRobb Matzke2000-12-291-0/+1
| | | | | | | 2000-12-28 12:03:41 Robb Matzke <matzke@llnl.gov> * main: If the file cannot be opened then immediately try the next argument. This prevents multiple error messages from the same file.
* [svn-r3226] ./hdf5/src/H5FL.cRobb Matzke2000-12-291-42/+0
| | | | | 2000-12-29 14:13:43 Robb Matzke <matzke@llnl.gov> *: Removed API tracing code from internal functions.
* [svn-r3225] ./hdf5/src/H5FDstream.cRobb Matzke2000-12-291-7/+8
| | | | | | | 2000-12-29 08:59:03 Robb Matzke <matzke@llnl.gov> * H5FD_stream_query: The `flags' argument is advertised to be output only. Therefore I added code to zero its value before the feature bits are assigned.
* [svn-r3224] ./hdf5/src/H5FDstdio.cRobb Matzke2000-12-291-15/+16
| | | | | | | 2000-12-29 08:57:58 Robb Matzke <matzke@llnl.gov> * H5FD_stdio_query: The `flags' argument is advertised to be output only. Therefore I added code to zero its value before the feature bits are assigned.
* [svn-r3223] ./hdf5/src/H5FDsrb.cRobb Matzke2000-12-291-2/+3
| | | | | | | 2000-12-29 08:56:44 Robb Matzke <matzke@llnl.gov> * H5FD_srb_query: The `flags' argument is advertised to be output only. Therefore I added code to zero its value before the feature bits are assigned.
* [svn-r3222] ./hdf5/src/H5FDsec2.cRobb Matzke2000-12-291-6/+7
| | | | | | | 2000-12-29 08:56:22 Robb Matzke <matzke@llnl.gov> * H5FD_sec2_query: The `flags' argument is advertised to be output only. Therefore I added code to zero its value before the feature bits are assigned.
* [svn-r3221] ./hdf5/src/H5FDprivate.hRobb Matzke2000-12-291-1/+1
| | | | | 2000-12-29 09:06:25 Robb Matzke <matzke@llnl.gov> * H5FD_query: Marked `flags' argument as /*out*/
* [svn-r3220] ./hdf5/src/H5FDmulti.cRobb Matzke2000-12-291-2/+3
| | | | | | | 2000-12-29 08:55:42 Robb Matzke <matzke@llnl.gov> * H5FD_multi_query: The `flags' argument is advertised to be output only. Therefore I added code to zero its value before the feature bits are assigned.
* [svn-r3219] ./hdf5/src/H5FDmpio.cRobb Matzke2000-12-291-6/+56
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2000-12-29 13:26:28 Robb Matzke <matzke@llnl.gov> * H5FD_mpio_write: Avoid MPI_Get_count() when using the LAM implementation of MPI. This code must have other problems anyway because Kim Yates has a similar kludge in place to avoid negative return values from the same function. 2000-12-29 13:25:30 Robb Matzke <matzke@llnl.gov> * H5FD_mpio_read: Avoid MPI_Get_count() when using the LAM implementation of MPI. This code must have other problems anyway because Kim Yates has a similar kludge in place to avoid negative return values from the same function. 2000-12-29 11:28:13 Robb Matzke <matzke@llnl.gov> * H5FD_mpio_flush: Read and rewrite the last allocated byte of the file to insure that EOF>=EOA. 2000-12-29 09:32:49 Robb Matzke <matzke@llnl.gov> * H5FD_mpio_write: Removed unused variable. 2000-12-29 09:32:15 Robb Matzke <matzke@llnl.gov> * H5FD_mpio_write: Fixed a failure return value that should have been FAIL instead of NULL. 2000-12-29 09:31:47 Robb Matzke <matzke@llnl.gov> * H5FD_mpio_read: Removed unused variable. 2000-12-28 16:09:31 Robb Matzke <matzke@llnl.gov> * H5FD_mpio_query: The `flags' argument is advertised to be output only. Therefore I added code to zero its value before the feature bits are assigned.
* [svn-r3218] ./hdf5/src/H5FDlog.cRobb Matzke2000-12-291-6/+7
| | | | | | | 2000-12-29 08:55:06 Robb Matzke <matzke@llnl.gov> * H5FD_log_query: The `flags' argument is advertised to be output only. Therefore I added code to zero its value before the feature bits are assigned.
* [svn-r3217] ./hdf5/src/H5FDgass.cRobb Matzke2000-12-291-2/+3
| | | | | | | 2000-12-29 08:54:15 Robb Matzke <matzke@llnl.gov> * H5FD_gass_query: The `flags' argument is advertised to be output only. Therefore I added code to zero its value before the feature bits are assigned.
* [svn-r3216] ./hdf5/src/H5FDfamily.cRobb Matzke2000-12-291-3/+4
| | | | | | | 2000-12-29 08:53:43 Robb Matzke <matzke@llnl.gov> * H5FD_family_query: The `flags' argument is advertised to be output only. Therefore I added code to zero its value before the feature bits are assigned.
* [svn-r3215] ./hdf5/src/H5FDdpss.cRobb Matzke2000-12-291-4/+5
| | | | | | | 2000-12-29 08:52:45 Robb Matzke <matzke@llnl.gov> * H5FD_dpss_query: The `flags' argument is advertised to be output only. Therefore I added code to zero its value before the feature bits are assigned.
* [svn-r3214] ./hdf5/src/H5FDcore.cRobb Matzke2000-12-291-1/+1
| | | | | 2000-12-29 08:51:49 Robb Matzke <matzke@llnl.gov> *: Just lined up a comment.
* [svn-r3213] ./hdf5/src/H5FD.cRobb Matzke2000-12-291-5/+6
| | | | | | | | | | | 2000-12-29 09:06:02 Robb Matzke <matzke@llnl.gov> * H5FD_query: Marked `flags' argument as /*out*/ 2000-12-29 09:05:49 Robb Matzke <matzke@llnl.gov> * H5FDquery: Marked `flags' argument as /*out*/ 2000-12-29 09:03:39 Robb Matzke <matzke@llnl.gov> * H5FD_open: Reindented a line or two.
* [svn-r3212] ./hdf5/src/H5F.cRobb Matzke2000-12-291-8/+8
|
* [svn-r3211] ./hdf5/configure.inRobb Matzke2000-12-291-1/+36
| | | | | | 2000-12-29 11:54:38 Robb Matzke <matzke@llnl.gov> *: Added recognition of LAM's hcc, which is almost identical to MPICH's mpicc.
* [svn-r3210] ./hdf5/configureRobb Matzke2000-12-291-20/+52
|
* [svn-r3209] Purpose:Quincey Koziol2000-12-285-3/+48
| | | | | | | | | | | | | Updating debugging information for new features, etc. Description: Lots of the new features added to the library during the last year or so have been added without updating the debugging routines used by h5debug. Solution: Added more of the new features (although not all of them) to the debugging routines for h5debug. Also included some more information to expand on the information printed from h5debug. Platforms tested: FreeBSD 4.2 (hawkwind)
* [svn-r3208] Changed the SUBRELEASE information from just 'beta3' to ↵Albert Cheng2000-12-281-1/+1
| | | | | | | | | 'beta3-snap0' to indicate it is before beta3 release may be attempted. Platform Tested: eirene--compiled without errors.
* [svn-r3207] Changed the SUBRELEASE information from just 'beta3' to ↵Albert Cheng2000-12-281-1/+1
| | | | | | 'beta3-snap0' to indicate it is before beta3 release may be attempted.
* [svn-r3206] Frank Baker2000-12-271-1/+1
| | | | | | | | | | Purpose: Return value error in H5Tarray_create Solution: H5Tarray_create Fixed return value to read 'int' (was 'int *') Platforms tested: IE 5
* [svn-r3205] Frank Baker2000-12-271-2/+2
| | | | | | | | | | Purpose: Error in H5Tget_array_dims and H5Tget_array_ndims return types Solution: H5Tget_array_dims and H5Tget_array_ndims Fixed return value to read 'int' (was 'int *') Platforms tested: IE 5
* [svn-r3204] Purpose:Bill Wendling2000-12-261-3/+11
| | | | | | | | | | | | Bug Fix Description: The #ifdef ... #else statement had no line breaks in it. This caused the compiler on Sangamon to freak out saying the #ifdef was invalid. Solution: Put line breaks in it. Platforms tested: Sangamon
* [svn-r3203] Purpose:Bill Wendling2000-12-261-2/+1
| | | | | | | | | | Removal of spurious warnings Description: On HP-UX systems, the compiler would warn of a redeclaration of H5G_entry_t in the H5Sprivate.h header. Solution: Removed the prototype declaration since H5Oprivate.h includes the H5Gprivate.h header file already.
* [svn-r3202] Purpose:Bill Wendling2000-12-261-0/+4
| | | | | | Update Description: Added ./doc/html/cpplus files.
* [svn-r3201] Purpose:Bill Wendling2000-12-251-6/+2
| | | | | | | | Update Description: Updated to reflect document additions and subtractions. Platforms tested: Linux
* [svn-r3200] Purpose:Albert Cheng2000-12-231-1/+0
| | | | | | | | | | | Bug fix Description: install method was cached as 'cp -r'. It did not work in --srcdir option as the configure set the method to ../cp -r. Solution: Removed the cached entry. Let it look for install or use install-sh. Platforms tested: LLNL Blue (found and used /usr/local/gnu/bin/install).
* [svn-r3199] Binh-Minh Ribler2000-12-2329-226/+146
| | | | | | | | | | | | | | | | | | Purpose: bug fix Description: I found a couple of places where virtual destructors were missing and could cause small memory leaks. Also, some destructors were not virtual when they should be. Solution: - added virtual destructors, which also free dynamically allocated memory - added virtual to several destructors - also, fixed several typos Platforms tested: Solaris 2.7 (arabica)
* [svn-r3198] Frank Baker2000-12-221-3/+2
| | | | | | | Purpose: Changing notation to indicate post-Beta Platforms tested: IE 5
* [svn-r3197] Frank Baker2000-12-221-0/+97
| | | | | Purpose: Adding HDF5 Tutorial files (./doc/html/Tutor/*)
* [svn-r3196] Frank Baker2000-12-2291-0/+8418
| | | | | | | Purpose: Adding Tutorial to development branch (R 1.4) Platforms tested: IE 5
* [svn-r3195] Frank Baker2000-12-221-2/+0
| | | | | | | Purpose: Adding tutorial to development branch (R 1.4) Platforms tested: IE 5
* [svn-r3194] MuQun Yang2000-12-221-10/+15
| | | | | | | | | | | | | | | | | | Purpose: bug fix Description: 1. zeroing out memory before using the memory buffer 2. before wrongly using Vquerysize API of HDF4 to obtain the real file size of record type in HDF4. Actually Vquerysize will return the real data type size in Memory. That will cause the object reference difference on Cray which file size is not equal memory size. Solution: 1. using h4toh5ZeroingMemory function to zero out memory. 2. calcuating the real file size of vdata record in the converter instead of using Vquerysize HDF4 API. Platforms tested: Cray J90, arabica, eirene
* [svn-r3193] MuQun Yang2000-12-225-9/+25
| | | | | | | | | | | | Purpose: bug fix Description: Zeroing out all memory buffer before it is being used. Solution: using h4toh5ZeroMemory function Platforms tested: linux(eirene), arabica(sun 2.7)
* [svn-r3192] MuQun Yang2000-12-221-0/+6
| | | | | | | | | | | Purpose: a windows bug fix Description: so that sec2 driver can support >2 G file on windows NTFS Solution: using lseek_i64 for windows platform Platforms tested: tested on windows 2000, confirmed on eirene and arabica
* [svn-r3191] MuQun Yang2000-12-221-1/+25
| | | | | | | | | | | | Purpose: a windows bug fix Description: support > 2G file on windows NTFS Solution: using fsetpos to seek the address Platforms tested: windows 2000, confirmed on arabica and eirene.
* [svn-r3190] Purpose:Bill Wendling2000-12-221-1/+1
| | | | | | | | | | | | | | Bug fix Description: This should fix the problem with installing the Fortran module files. Solution: This script determines if the HDF5 module is created. If it is, then we assume that we need to install all of the modules. I check for both upper and lowercase in the name cause I'm not sure what weird fortran compilers will do. Platforms tested: Linux
* [svn-r3189] Purpose:Quincey Koziol2000-12-222-2/+2
| | | | Changed version number to beta3, now that beta2 is out.
* [svn-r3188] Frank Baker2000-12-222-0/+581
| | | | | | | | | Purpose: Checking in MountingFiles.html and Performance.html. These documents were originally created in 1.2 branch and never checked in to the development branch. Platforms tested: IE 5
* [svn-r3187] Frank Baker2000-12-2217-36/+0
| | | | | | | | Purpose: Removed index links to Palettes.html (removed from doc set) in all User Guide files. Platforms tested: IE 5