summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r4018] Purpose:Quincey Koziol2001-06-194-28/+4
| | | | | | | | Code cleanup Description: Removed some more warnings during compilation on SGI machines.. Platforms tested: Irix64-6.5 (modi4)
* [svn-r4017] Purpose:Quincey Koziol2001-06-194-9/+14
| | | | | | | | | | | | | Code cleanup Description: Several system header files needed to be included on Linux machines to get the prototypes for some of the system calls we are using. Solution: Added a new feature test macro for including the <features.h> header on Linux machines, to set up compile macros for system header files. Platforms tested: Linux (eirene), FreeBSD 4.3 (hawkwind)
* [svn-r4016] Purpose:Quincey Koziol2001-06-191-1/+11
| | | | | | | | | | Code cleanup Description: Get ready for adding C99 extensions sometime in the future. Solution: Added some comments to the gcc flags.. Platforms tested: Linux (eirene), FreeBSD 4.3 (hawkwind)
* [svn-r4015] Purpose:Quincey Koziol2001-06-192-484/+495
| | | | | | | | | | | | Code cleanup Description: Several system functions don't have prototypes on Linux machines with our current compile flags. Solution: Add _POSIX_SOURCE and _BSD_SOURCE macros to the compile line when compiling on Linux machines, to pick up missing prototypes. Platforms tested: Linux (eirene), FreeBSD 4.3 (hawkwind)
* [svn-r4014] Purpose:Quincey Koziol2001-06-191-1/+1
| | | | | | | | | | | Bug Fix Description: HDfprintf wasn't aware of 'L' type modifier and was passing along the '%Ld' verbatim instead of printing a long long integer value. Solution: Added 'L' to the type modifiers checked in HDfprintf Platforms tested: Linux (eirene)
* [svn-r4013] Purpose:Bill Wendling2001-06-183-10/+12
| | | | | | | | | | | | POSIX Removal Description: Removed calls to POSIX functions and replaced them with the HD* equivalents. Solution: Did just that. Also had to create two new HD* macros, the gettimeofday() and getrusage() Platforms tested: Linux
* [svn-r4012] Purpose:Quincey Koziol2001-06-1839-574/+486
| | | | | | | | Clean up compiler warnings. Description: Just code neatening mostly, some casts, etc. Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r4011] Purpose:Quincey Koziol2001-06-162-40/+1
| | | | | | | | | | | Code fix Description: Unresolved references to the image code were left behind when it was removed from the library.. Solution: Finished taking out the image stuff... Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r4010] Purpose:Quincey Koziol2001-06-163-48/+80
| | | | | | | | | | | | | Bug Fix Description: uint64_t type was accidentally taken out and was causing tests on DEC UNIX to fail. Solution: Brought back uint64_t type. Also cleaned up some comments and moved the sec2 specific macros back into the sec2 (and log) driver. Platforms tested: DEC UNIX (gondolin)
* [svn-r4009] updated manifestPedro Vicente Nunes2001-06-151-12/+1
|
* [svn-r4008] remove image and litePedro Vicente Nunes2001-06-156-1935/+0
|
* [svn-r4007] Frank Baker2001-06-151-1/+1
| | | | | | | Purpose: Added '2001' to Copyright line. Platforms tested: IE 5
* [svn-r4003] Purpose:Quincey Koziol2001-06-141-22/+114
| | | | | | | | | Regression check added Description: Added regression check to verify that the array reading code is now working correctly for small data transfer buffers. Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r4002] Purpose:Quincey Koziol2001-06-145-242/+72
| | | | | | | | | | | | | Bug fix/code improvement. Description: 'all' selections were (ab)using the array reading code and required that the internal data transfer buffer size be big enough to hold the an entire slab of the data, which was confusing and limiting for users. Solution: Changed 'all' selections to use sequence reading code instead of array reading code. Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r4001] Description:Quincey Koziol2001-06-141-0/+4
| | | | | | Noted 'all' selection code improvement/bug fix. Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r3998] Purpose:Quincey Koziol2001-06-121-34/+0
| | | | | | | | | | | Code cleanup Description: float32 & float64 typedefs are not used in HDF5 library and are causing conflicts with Kent's h4toh5 library code. Solution: Take the float32 & float64 typedefs out Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r3995] no messagePedro Vicente Nunes2001-06-122-793/+0
|
* [svn-r3993] Purpose:Quincey Koziol2001-06-113-10/+11
| | | | | | | | | | | | | Bug fix for Pablo integration Description: Several API functions were using FUNC_ENTER, without using FUNC_LEAVE, HRETURN or HRETURN_ERROR to leave the function. (Using "plain" 'return' statements instead). Solution: Changed return statements to FUNC_LEAVE, HRETURN or HRETURN_ERROR, as appropriate. Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r3989] MuQun Yang2001-06-112-6/+66
| | | | | | | | | Purpose: New features for adding attribute options and modifying testing files Description: Solution: Platforms tested: eirene,arabica
* [svn-r3988] MuQun Yang2001-06-119-175/+479
| | | | | | | | | | | | | | | | | Purpose: new features Description: 1. add an option to convert HDF4 file without HDF4 specified attributes such as HDF4_OBJECT_TYPE, HDF4_REF_NUM etc. it can be done by inputting "h4toh5 -na input.hdf" The default converter will still keep HDF4 specfied attributes. 2. Add compression features (gzip) for image too. Now the compressed HDF4 image can be supported by using HDF5 gzip. Not sure whether tools can read it. Need to be tested. 3. Change SPACEPAD to NULLTERM for HDF4 dimensional name list. We can use variable length HDF5 string to represent these names, however currently H5dump and H5view cannot support variable length HDF5 string. converter will wait for other tools' update. Solution: Platforms tested: eirene(Red Hat 6.2) and arabica(solaris 2.7)
* [svn-r3987] MuQun Yang2001-06-112-0/+0
| | | | | | | | | | Purpose: update h4toh5 converter utility test files Description: better output of HDF4 dimensional name list Solution: Platforms tested: eirene,arabica
* [svn-r3986] MuQun Yang2001-06-113-0/+0
| | | | | | | | | | | | | Purpose: update h4toh5 testing files Description: Now we are using fixed size for HDF5 dimensional name list and h5dump output is appended with 000/000/....................... It looks ugly and annoying. Solution: Use NULLTERM for SDS dimensional list names Platforms tested: RedHat 6.2(eirene) and solaris 2.7(arabica)
* [svn-r3985] Purpose:Quincey Koziol2001-06-111-1/+1
| | | | | | | | Code cleanups Description: Fixed a small number of compiler warnings. Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r3984] Purpose:Quincey Koziol2001-06-112-25/+25
| | | | | | | | Code cleanups Description: Fixed a small number of warnings. Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r3983] Purpose:Quincey Koziol2001-06-116-18/+17
| | | | | | | | | Code cleanups Description: Fixed a small number of warnings and also took out the H5private.h header from H5Ppublic.h Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r3981] no messagePedro Vicente Nunes2001-06-112-0/+603
|
* [svn-r3980] property list modification for image and palettePedro Vicente Nunes2001-06-092-37/+77
|
* [svn-r3979] image examplePedro Vicente Nunes2001-06-091-0/+6
|
* [svn-r3978] manifest add filesPedro Vicente Nunes2001-06-091-4/+6
|
* [svn-r3977] imagePedro Vicente Nunes2001-06-094-0/+1332
|
* [svn-r3976] modified lite filesPedro Vicente Nunes2001-06-092-611/+0
|
* [svn-r3975] added image and lite filesPedro Vicente Nunes2001-06-071-0/+4
|
* [svn-r3974] code warrior portPedro Vicente Nunes2001-06-0717-115/+138
|
* [svn-r3973] Purpose:Albert Cheng2001-06-072-22/+68
| | | | | | | | | | | | | Bug fix Description: The t_mpi used to fail and exit if any error detected. That aborted other process in a "make check" situation. Solution: Introduced a new error verification as INFO. INFO is for information only. It does not increase nerrors count. The program always exits with 0. Platforms tested: eirene with mpich.
* [svn-r3972] my first HDF5 library commitPedro Vicente Nunes2001-06-064-6/+2
|
* [svn-r3971] my first hdf5 library contributionPedro Vicente Nunes2001-06-062-7/+17
|
* [svn-r3970] my first hdf5 library contributionPedro Vicente Nunes2001-06-064-0/+1398
|
* [svn-r3969] test cvsPedro Vicente Nunes2001-06-061-1/+0
|
* [svn-r3968] test cvsPedro Vicente Nunes2001-06-061-0/+1
|
* [svn-r3966] Purpose:Albert Cheng2001-06-063-11/+9
| | | | | | | | | | | | | | | | | | | bug fix Description: The last reported problem that the parallel example program in examples could not be compiled, could not be duplicated again. I guessed maybe Rushad mistook the compile warning messages as error messages. Just a guess. Furthermore, the changed examples/Makefile.in and configure.in, did not work for the parallel case. The examples/ph5example.c was never included for compiling. Solution: Removed the fix in configure.in, put ph5exmple directly back in the examples/Makefile.in but put it in a variable for easier future maintenance. Also, easier to identify the parallel examples too. Platforms tested: Eirene, both serial and parallel modes.
* [svn-r3964] Purpose:Albert Cheng2001-06-061-0/+7
| | | | | | | | | new feature Description: added the command option of "setenv x y" for setting environment variable x=y. Platforms tested: Eirene
* [svn-r3963] Purpose:Quincey Koziol2001-06-051-1/+9
| | | | | | | | | Small code addition Description: Addition logging of seeks during read operations (writes were already logging seeks). Also added a few asserts to check memory allocations... Platforms tested: Solaris 2.6 (baldric)
* [svn-r3962] Purpose:Quincey Koziol2001-06-051-2/+15
| | | | | | | | Code cleanup Description: Incremented error count when error conditions occur. Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r3959] Elena Pourmal2001-06-059-23/+23
| | | | | | | | | | | | | Purpose: Bug fix Description: All examples used "FILE" string in the #define preprocessor directive. That caused error on Windows platforms since FILE is a structure returned by fopen calls. Solution: Changed "FILE" to "H5FILE_NAME" Platforms tested: Linux (eirene)
* [svn-r3958] Elena Pourmal2001-06-043-18/+33
| | | | | | | | | | | | | | | | Purpose: HPUX 11.00 port Description: Redundant USE statements triggered a bug in the HP F90 compiler. Solution: Source code was rearranged to avoid redundancy: definitions of the object and dataset region reference types were moved from H5Rff.f90 to H5f90global.f90; "USE H5R" statement was removed from H5Rff.f90. Now H5Rff.f90 uses "USE H5GLOBAL" statement only as the rest of the modules. Platforms tested: HPUX 11.00 (kelgia), Solaris 2.7 (arabica)
* [svn-r3957] Dan Wells2001-06-041-50/+48
| | | | | | | | | | | | Purpose: Bug fix Description: The MPI I/O calls were not being traced. Solution: Changed the calls to traceEvent from the MPI I/O tracing to HDFtraceEvent in the Pablo Traceing. Platforms tested: Irix 32 and 64, HP VClass 32 and 64 bit and Solaris
* [svn-r3955] Purpose:Albert Cheng2001-06-011-0/+6
| | | | | | | | | | | | | | Bug fix Description: This file is not C++ friendly/compliant because the protocols are not bracketed by the #ifdef __cplusplus macro. This was discovered by a user attempting to use C++ with enable-parallel. Solution: Though we are not supporting C++ in parallel mode yet, it is simple to add the macro bracket. It would help if C++ is supported in the future. Platforms tested: modi4 (64,n32) and eirene (mpich).
* [svn-r3952] Purpose:Bill Wendling2001-05-302-2/+11
| | | | | | Update Description: Added the fact that HP V2500 & N4000 are now supported.
* [svn-r3951] Binh-Minh Ribler2001-05-291-4/+0
| | | | | | | | | | | | Purpose: Removing known problem Description: Removed the note about the c++ test compresion failed on Linux. This was meant to be in the RELEASE.txt of 1.4 branch, but I put it here by mistake. The problem is fixed now, I'll make a note in the correct RELEASE.txt. Platforms tested: Keeping my fingers crossed on this!
* [svn-r3950] Purpose:Bill Wendling2001-05-291-1/+0
| | | | | | Updated Description: Showed removal of versinfo