summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r6457] Purpose:Albert Cheng2003-03-041-7/+15
| | | | | | | | | | | | new feature Description: Added a force mode (-force) which turns off prompting, just do it. Platforms tested: Tested h5committest {arabica (fortran), eirene (fortran, C++) modi4 (parallel, fortran)}? no [If no, why not?] It is just a shell script. Tested it in eirene. Misc. update: Will check in the updated RELEASE and document files.
* [svn-r6453] MuQun Yang2003-03-032-0/+0
| | | | | | | | | | | | | Purpose: bug fix Description: To avoid warning of defined macro FUNCTION at .NET, _MSC_VER should be used instead of MSC_VER. Solution: change MSC_VER to _MSC_VER,furthermore, to avoid future warning, change MSC_VER == 1300 to _MSC_VER >=1300 Platforms tested: windows 2000,windows xp(no need to test on other platforms). Misc. update:
* [svn-r6452] Purpose:Quincey Koziol2003-03-035-12/+70
| | | | | | | | | | Code cleanup Description: Add B-tree node debugging routine for symbol table nodes (i.e. groups) Platforms tested: FreeBSD 4.7 (sleipnir)
* [svn-r6449] MuQun Yang2003-03-031-46/+99
| | | | | | | | | | | | | | | Purpose: 1.update windows release doc related to the addition of semi-automatic generated H5Tinit.c project and workspace files. 2. Make the doc more clear. Description: 1. H5Tinit.c was manually maintained before and it might affect the users who wants to build and test from HDF5 snapshot release. 2. Make sure that we are supporting .Net only on XP and also emphasize to DLL users to the DLL critical section of the doc. Solution: 1. Add a section for those users to semi-auto generate H5Tinit.c. Platforms tested: Doc files, no need to test. Misc. update:
* [svn-r6448] MuQun Yang2003-03-032-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Purpose: update project files, bug fix and new feature added on windows Description: 1. bug fix the maually-maintained H5Tinit.c on windows gave the wrong information of the size of data type long double due to inconsistent description of the long double at MSDN. After testing with a real case, find the long double is treated as double on windows. The size is 8 bytes. Previously it was set to 12. The alignment information of struct is missed in the old H5Tinit.c. 2. Project files updated With the Quincey's new additions, Project files hdf5, hdf5dll,testhdf5,testhdf5dll are modified. Add several test project files on windows, they are ntypes,ntypesdll,file_handle,file_handledll, getname, getnamedll, set_extent and set_extentdll. 3. New features H5Tinit.c can be automatically generated from H5detect.c. Adding a workspace and a project file for users who may build and test HDF5 snapshotes. Solution: 1. Use automatic-generated H5Tinit.c to replace the manually maintained H5Tinit.c This automatic-generated H5Tinit.c has been confirmed the same on windows XP and windows 2000. Platforms tested: windows 2000,(since the files changed are windows specified *.zip files, it will not affect non-windows platforms). Only update projects all-withf90.zip without building and testing due to upcoming modification of fortran projects by Elena.
* [svn-r6446] Snapshot version 1.5 release 48HDF Admin2003-03-0110-35/+35
|
* [svn-r6443] Elena Pourmal2003-02-272-0/+99
| | | | | | | | | Purpose: Bug fix Description: Added tests for enumeration types. Platforms tested: modi4, artabica, eirene
* [svn-r6442] Elena Pourmal2003-02-271-4/+4
| | | | | | | | | | | | Purpose: Bug fix Description: Enumeration datatype was broken in Fortran Solution: Fixed C wrapper functions to pass variables correctly from Fortran to C layer. Platforms tested: modi4, arabica, eirene
* [svn-r6441] Purpose:Pedro Vicente Nunes2003-02-271-125/+282
| | | | | | | | | | | | | | h5diff bugs and enhancements Description: added checking for not comparable datatypes added checking for the same dimensionality changed the functionality of -n option, to check up to n reported differences changed the formula for -p to relative error with absolute value fixed a bug on solaris, related to printf integer format (int datatype) Platforms tested: w2000, linux, solaris
* [svn-r6440] Purpose:Quincey Koziol2003-02-271-1/+1
| | | | | | | | | | | | | Bug fix. Description: -O2 -finline-functions still causes production builds on eirene to fail. Solution: Downgrade optimization on gcc 2.95.x (x<3) to -O -finline-functions Platforms tested: Linux 2.2 (eirene)
* [svn-r6439] Purpose:Quincey Koziol2003-02-261-1/+8
| | | | | | | | | | | | | | | | Bug fix w/gcc 2.95.x where x<3 Description: -O3 optimization level causes problems for gcc 2.95.2 on eirene Solution: Only enable -O3 if using gcc 2.95.x (where x>=3) or gcc 3 Otherwise, use older setting of -O2 -finline-functions Platforms tested: FreeBSD 4.7 (sleipnir) Linux 2.2 (eirene)
* [svn-r6437] Description:Albert Cheng2003-02-251-1/+1
| | | | | | | | | so_locations was not removed during distclean. Added it to the distclean targets. Platforms tested: Tested h5committest {arabica (fortran), eirene (fortran, C++) modi4 (parallel, fortran)}? No [If no, why not?] Tested in modi4 and eirene with C++ enabled..
* [svn-r6436] Purpose:Quincey Koziol2003-02-248-20/+2107
| | | | | | | | | | | | | New internal feature Description: Add internal API for building and working with heaps (H5HP). This will be used for the LRU algorithm in the new metadata cache code. Platforms tested: Tested h5committest {arabica (fortran), eirene (fortran, C++) modi4 (parallel, fortran)} FreeBSD 4.7 (sleipnir)
* [svn-r6435] Purpose:Quincey Koziol2003-02-241-2/+3
| | | | | | | | | | | | Code cleanup Description: Added more information to information printed for test failure. Platforms tested: Tested h5committest {arabica (fortran), eirene (fortran, C++) modi4 (parallel, fortran)}
* [svn-r6434] Purpose:Quincey Koziol2003-02-241-9/+15
| | | | | | | | | | | | | | Code cleanup Description: Removed extraneous __FUNCTION__ declaration that was causing warnings on Windows. Updated copyright information. Platforms tested: Tested h5committest {arabica (fortran), eirene (fortran, C++) modi4 (parallel, fortran)}
* [svn-r6433] Purpose:Quincey Koziol2003-02-246-100/+194
| | | | | | | | | | | | | | | Code/comment cleanup Description: Made more information about reference-counted strings private to the H5RS package by trimming the typedef used in H5RSprivate.h and switching from using macros for a couple of operations to using functions. Updated copyright information for a few of these files. Platforms tested: Tested h5committest {arabica (fortran), eirene (fortran, C++) modi4 (parallel, fortran)}
* [svn-r6431] Purpose:Quincey Koziol2003-02-242-12/+0
| | | | | | | Comment cleanup Description: Corrected comment information.
* [svn-r6430] Purpose:Quincey Koziol2003-02-247-50/+103
| | | | | | | Code cleanup (sorta) Description: Updated to new copyright information as I browsed these files.
* [svn-r6429] Purpose:Pedro Vicente Nunes2003-02-241-169/+151
| | | | | | | removed -d , -g , -t and -v options and renamed -m to -d and -v to -l added output for objects that are not in one file but in the other Platforms tested: windows, linux
* [svn-r6428] Purpose:Bill Wendling2003-02-222-1/+1
| | | | | | | | | | Bug Fix Description: Private header file was included in a public header file by mistake. Solution: Put the private header file into the .c module instead. Platforms tested: Linux 2.4 (see, I really did test it).
* [svn-r6427] Purpose:Bill Wendling2003-02-212-5/+10
| | | | | | | | | | | Update Description: Changed the H5FPinit() function to accept pointers to what the SAP Comm and SAP Barrier Comm should be assigned to. This is the first step in hopefully getting rid of the global versions of them altogether (but we'll see). Platforms tested: Linux
* [svn-r6426] Purpose:Bill Wendling2003-02-216-113/+209
| | | | | | | | | | | | Update Description: Final support addition for FPHDF5. Wherever there was an equivalent MPIO or MPIO/POSIX call/check, I placed an FPHDF5 call/check there as well, with the appropriate #ifdefs in place. The hdf5.h is updated with the H5FDfphdf5.h driver #include. Platforms tested: Linux & Modi4
* [svn-r6425] Purpose:Bill Wendling2003-02-213-390/+723
| | | | | | | | | | | | | | | | Update Description: Big change to the H5FD.c module: - Split apart H5FD_alloc and H5FD_free. H5FD_alloc was huge and H5FD_free had a freeing of the freelist part which I needed to call from the SAP. - Added support for FPHDF5. If it's a client, then it sends the allocation or free request to the SAP. The SAP will call the same code, but it'll actually do the allocation/freeing in that case. Platforms tested: Linux & Modi4
* [svn-r6424] Purpose:Bill Wendling2003-02-212-17/+127
| | | | | | | | Update Description: Added support for allocating and freeing space in the file. Platforms tested: Linux & Modi4
* [svn-r6423] Purpose:Bill Wendling2003-02-216-29/+293
| | | | | | | | | Update Description: Added support for the allocation and freeing of space in the file. This information is kept on the Server. Platforms tested: Linux & Modi4
* [svn-r6421] Raymond Lu2003-02-191-16/+6
| | | | | | | | | Purpose: test program modification Description: put part of code into an internal function. Nothing serious. Platforms tested: eirene
* [svn-r6419] Raymond Lu2003-02-183-2/+169
| | | | | | | | | | | | Purpose: More test. Description: Test independent read of groups and chunked dataset. Solution: This test is similar to multiple group test. So just add it in the testphdf5.c,h. Platforms tested: modi4, eirene.
* [svn-r6416] MuQun Yang2003-02-182-0/+0
| | | | | | | | | | | | | | Purpose: windows project updating Description: To reflect Qunicey and Ray's changes (add/remove files and filters) Solution: Platforms tested: windows 2000 Misc. update: Update MANIFEST if you add or remove any file. Update release_docs/RELEASE for bug fixes, new features, etc. Update applicable document files too.
* [svn-r6415] Purpose:Quincey Koziol2003-02-185-28/+58
| | | | | | | | | | | | | Code cleanup Description: Changed hard-coded magic number (32) for the maximum number of filters in a filter pipeline to use a symbolic constant (H5Z_MAX_NFILTERS) instead. This limit could (and probably should) be removed to allow an unlimited number of filters in a pipeline. Platforms tested: FreeBSD 4.7 (sleipnir)
* [svn-r6414] Purpose:Albert Cheng2003-02-181-3/+12
| | | | | | | | | | | | Bug fix (no id, just noticed myself) Description: Added a barrier before doing file cleanup to ensure all tests are completed by then. Moved the MPI_Finalize to be very end and insert an H5close before it to ensure all potential MPI activities by HDF5 are done by then. Platforms tested: Tested h5committest {arabica (fortran), eirene (fortran, C++) modi4 (parallel, fortran)}? Yes.
* [svn-r6413] Purpose:Albert Cheng2003-02-171-19/+40
| | | | | | | | | | | | bug fix, features. Description: removed the cache of sizeof_long since it varies between 32 and 64 bits. Set xlc and mpcc_r as the default compiler for serial and parallel modes. Added -D_LARGE_FILES by default to support large file size. Added gcc gnu-flags when gcc compiler is used (not working yet.) Platforms tested: Tested in Copper only since that is the only AIX machine on site.
* [svn-r6412] Purpose:Quincey Koziol2003-02-1716-462/+1400
| | | | | | | | | | Code cleanup Description: Update dependencies and clean up a few warnings. Platforms tested: Linux 2.2 (eirene) w/parallel
* [svn-r6411] Purpose:Quincey Koziol2003-02-1748-1712/+1457
| | | | | | | | | | | | | | | | | | | | | | Code cleanup Description: Clean up miscellaneous warnings which have crept into the code. Fix "_POSIX_C_SOURCE not defined" warning on FreeBSD. Adjust gcc compiler flags to be more concise for production mode. Refactor the H5O code so that there is a stronger boundary between code in the H5O package and code in the library which just calls H5O routines. Platforms tested: Tested h5committest {arabica (fortran), eirene (fortran, C++) modi4 (parallel, fortran)} FreeBSD 4.7 (sleipnir) serial & parallel and gcc 2.95.4 & gcc 3.2.2 Misc. update: Update MANIFEST if you add or remove any file.
* [svn-r6410] Purpose:Quincey Koziol2003-02-172-14/+24
| | | | | | | | | | Bug fix. Description: Correct compile errors when configured with --enable-debug=all. Platforms tested: FreeBSD 4.7 (sleipnir) serial & parallel
* [svn-r6407] Snapshot version 1.5 release 47HDF Admin2003-02-1510-35/+42
|
* [svn-r6406] Purpose:Bill Wendling2003-02-142-115/+68
| | | | | | | | | | | | Update Description: Since metadata doesn't use a "set view" to do I/O, I moved the check for the use_set_view variable down into the "real" write routine. Also added a check for when the server is dumping metadata to the file. in that case, don't write this information to the SAP... Platforms tested: Linux
* [svn-r6404] Purpose:Bill Wendling2003-02-142-3/+12
| | | | | | | | | | | | | | | | Bug Fix (Bug #806) Description: When compiling/installing with the command "make install" (without performing a "make" beforehand) the tools weren't being made. This was because the `install' command in the Makefiles only relied upon public libraries, not private ones (which the one in the tools directory is). Solution: Had the `install' command be dependent upon an "AUX_LIB" macro which includes libraries which are needed but aren't distributed (that is, they're staticly compiled). Platforms tested: Linux
* [svn-r6403] Purpose:Albert Cheng2003-02-141-1/+1
| | | | Updated it with the v1.4 revision.
* [svn-r6402] Purpose:Bill Wendling2003-02-122-393/+236
| | | | | | | | | | | | | | | Update Description: Added the flush function. Modified so that it calls the FPHDF5 code for reading and writing. This involved splitting the write function up into three different parts to avoid lame goto's. There's some code which will copy a data xfer property list and add in there that we're "dumping" the data so that we can recall this layer when the SAP dumps metadata to a process... Platforms tested: Linux
* [svn-r6401] Purpose:Bill Wendling2003-02-123-68/+226
| | | | | | | | | | | | | | | | Update Description: Added a "metadata flush" function which allows the clients to force a dump of the metadata from the SAP. This should be done before closing the file. Modified the information stored on an "open" of the file. The filename is unnecessary, so I got rid of it. More integration with the File Driver code: Passing in a data xfer property list. Platforms tested: Linux
* [svn-r6400] Raymond Lu2003-02-1214-109/+131
| | | | | | | | | | | Purpose: Change feature Description: Switch to Fletcher32 from Adler32 checksum Platforms tested: arabica, eirene, modi4 Misc. update: MANIFEST and RELEASE.txt updated.
* [svn-r6399] Purpose:Bill Wendling2003-02-122-2/+2
| | | | | | | | | | Bug Fix Description: Pesky little thing: H5GOTO_ERROR was returning NULL instead of FAIL. Solution: Changed accordingly Platforms tested: Linux.
* [svn-r6398] Purpose:Quincey Koziol2003-02-1227-57/+62
| | | | | | | | | | Code cleanup Description: Clean up some compiler warnings Platforms tested: FreeBSD 4.7 (sleipnir)
* [svn-r6397] MuQun Yang2003-02-122-0/+0
| | | | | | | | | | | | | Purpose: update windows project files Description: Some new files such H5Tcommit.c is added in. Solution: windows 2000 Misc. update: Update MANIFEST if you add or remove any file. Update release_docs/RELEASE for bug fixes, new features, etc. Update applicable document files too.
* [svn-r6396] Purpose:Bill Wendling2003-02-122-4/+4
| | | | | | | | | | | Bug Fix Description: Some of the error conditions in the H5GOTO_ERROR macros were NULL instead of FAIL. Solution: Changed accordingly. Platforms tested: Linux
* [svn-r6395] Purpose:Quincey Koziol2003-02-1223-4153/+5087
| | | | | | | | | | | | | | | | | | | | | | | Code cleanup. Description: Break up the ~9350 line H5T.c module into smaller pieces, which contain code for a particular feature or support for a datatype class. This should make the "main" H5T code (still in H5T.c) easier to support, as well as removing some of the "minor" routines from the user applications which don't use them (my rough estimates show about 4% reduction (~30K on a FreeBSD machine) in optimized, staticly-linked binaries for very simple programs) Platforms tested: Tested h5committest {arabica (fortran), eirene (fortran, C++) modi4 (parallel, fortran)} FreeBSD 4.7 (sleipnir) Misc. update: Update MANIFEST
* [svn-r6394] Purpose:Quincey Koziol2003-02-121-6/+2
| | | | | | | | | | | | | | Bug fix. Description: Missed adding the dxpl to the 'flush' VFL callback in the stream driver, causing the C++ compiles to fail. Solution: Added the dxpl parameter. Platforms tested: FreeBSD 4.7 (sleipnir) w/CC=g++
* [svn-r6393] Frank Baker2003-02-111-1/+33
| | | | | | | | | | | | Purpose: To bring the H5Z_func_t definition from the old User's Guide into the Reference Manual. Description: Added custom filter function H5Z_func_t definition to the H5Zregister function description. This definition will next be edited to bring it up-to-date. Platforms tested: IE 5
* [svn-r6392] Purpose:Bill Wendling2003-02-103-580/+874
| | | | | | | | | | | | | | | | | | | | | | | | Update Description: Folded in Quincey's changes to the caching stuff. (Stole the code from the H5FDmpio driver). Roughed in some code for doing a read from the SAP. Also roughed in code for doing a write. However, the write requires an OID, which I'm not sure how to pass down into the driver (maybe via the dxpl_id?...but then it has always to be set before calling one of these routines...). Removed some of the global variables which were there because of the FPHDF5 stuff... Removed the H5Ofphdf5.* stuff from the Makefile.in, since I'm pretty sure it's going away and I don't want to waste time updating that module if that's the case...so just don't compile it. Platforms tested: Linux
* [svn-r6391] Purpose:Bill Wendling2003-02-101-3/+0
| | | | | | | | | | Fix Description: The extra field I put in this structure wasn't needed. Solution: Placed it in the file driver's structure instead. Platforms tested: Linux