summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r1788] Converted all the VFL drivers except for the stdio and multi ↵Quincey Koziol1999-10-238-675/+1166
| | | | | | drivers back into the "internal" HDF5 coding standard.
* [svn-r1787] Removed CVS merged warnings stuff that got check in by mistake.Albert Cheng1999-10-231-5/+0
|
* [svn-r1786] Added stdio VFL driver to the list of VFL drivers the user can test.Quincey Koziol1999-10-201-0/+3
|
* [svn-r1785] Added stdio VFL driver, which uses the new public H5E calls.Quincey Koziol1999-10-206-12/+745
|
* [svn-r1784] Updated with autoconf, I think...Quincey Koziol1999-10-201-452/+535
|
* [svn-r1783] Added public H5Epush... routines and macros.Quincey Koziol1999-10-202-0/+55
|
* [svn-r1782] revised the tests and made the timing tests bat file. like in ↵Patrick Lu1999-10-181-0/+0
| | | | the release version
* [svn-r1769] Snapshot version 1.3 release 2Albert Cheng1999-10-162-2/+2
|
* [svn-r1768] Deriverd from configure.in.Albert Cheng1999-10-151-3/+0
|
* [svn-r1767] MANIFEST:Albert Cheng1999-10-153-286/+155
| | | | | | | | | Updated. configure.in: Removed the test for -lxnet in the GASS-driver part. There is no need for it and it does not exist in other machines like IRIX64. configure: Deriverd from configure.in.
* [svn-r1766] Modified to support install-doc.Albert Cheng1999-10-151-0/+64
|
* [svn-r1765] Makefile.in:Albert Cheng1999-10-154-115/+7
| | | | | | | | | configure.in: Modified to support install-doc. configure: Derived from configure.in via autoconf. INSTALL_MAINT: Moved to doc/html/Lib_Maint.html
* [svn-r1764] Added the install-doc and uninstall-doc targets.Albert Cheng1999-10-152-0/+34
|
* [svn-r1763] Shared mode works fine now with IRIX64. Removed the special ↵Albert Cheng1999-10-151-3/+0
| | | | disable-shared.
* [svn-r1762] Folded in changes from v1.2 for install-doc.Albert Cheng1999-10-151-0/+31
|
* [svn-r1761] Lib_Maint.html was toplevel INSTALL_Maint.Albert Cheng1999-10-152-0/+167
| | | | Folded in changes from v1.2 for install-doc.
* [svn-r1760] Added a paragraph of how to use bin/install-sh explicitedly.Albert Cheng1999-10-151-0/+6
|
* [svn-r1759] Corrected a few more compiler warnings.Quincey Koziol1999-10-154-24/+24
|
* [svn-r1754] Fixed file prologue.Robb Matzke1999-10-151-2/+2
|
* [svn-r1753] Changes since 19991007Robb Matzke1999-10-1516-264/+1025
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ---------------------- ./configure.in ./src/H5config.h.in [REGENERATED] The /usr/ncsa/{include,lib} directories are only added if they actually exist. This fixes a warning on some systems. Checks for the <pdb.h> header file and also for either the PDB or Silo library, and if found prepares to compile the pdb2hdf program. ./config/distdep Relative path names for include files are changed to base names since the makefile contains the logic for searching and since it's likely that building the .distdep files happed from a location other than where they would be used in the file system. ./config/conclude.in Fixed shell errors when `for' loops iterate over nothing for the `uninstall' target. ./src/H5D.c ./src/H5Oefl.c File names for the external files are added to the heap when the dataset is created instead of when the object header is written. This fixes a rare infinite recursion bug. ./src/H5FD.c ./src/H5FDpublic.h Optimization to the free list causes H5FD_alloc() usage to go from >10 seconds to <0.4 second for one example (converting a 30MB equation of state file from PDB to HDF5 format). The optimization is to simply keep track of the largest item in the free list and not search the free list when the largest item is not big enough to satisfy the request. ./src/H5FDcore.c ./src/H5FDcore.h ./test/h5test.c If the `backing_store' property is true then a flush causes the entire contents of memory to be written to the specified file. This is in preparation for the ASCI/red optimizations and is currently tested by the pdb2hdf `--cached' switch. ./src/H5Odtypes.c Wrapped three long lines. ./tools/Makefile.in ./tools/pdb2hdf.c [NEW] A PDB-to-HDF5 translator. It only translates meta data -- the resulting HDF5 points into the PDB file for the raw data.
* [svn-r1744] i removed an extra function that wasn't being usedPatrick Lu1999-10-131-173/+1
|
* [svn-r1743] fixed some compilation errors on unixPatrick Lu1999-10-131-3/+4
|
* [svn-r1742] changed the name of the objectid macro to objid. conflicted with ↵Patrick Lu1999-10-132-2/+2
| | | | | | a windows define
* [svn-r1741] write 0f0f0f0f into the *a.raw and *b.raw files so if the os ↵Patrick Lu1999-10-131-1/+6
| | | | | | | doesn't put 0's in when it skips over part of the file the garbage is not left in there. fixes problems with win 98
* [svn-r1739] Cleaned up some warnings from the HP compiler.Quincey Koziol1999-10-092-2/+1
|
* [svn-r1738] Took out the "UNUSED" macros from the parameter lists, they were ↵Quincey Koziol1999-10-092-3/+3
| | | | | | confusing the HP compiler.
* [svn-r1733] Change section 4.- to "asked, but not required" from "must"Barbara Jones1999-10-071-3/+3
|
* [svn-r1732] Changes since 19991007Robb Matzke1999-10-077-26/+23
| | | | | | | | | | | | | | | | | | | | | | | | ---------------------- ./src/H5FDcore.c Includes private headers instead of public in order to use the `UNUSED' macro. ./src/H5FDpublic.h Includes H5public.h just in case. ./src/H5P.c Removed two unused variables in H5P_copy() ./src/H5FDgass.h Fixed a C++ comment after a `#endif' ./src/Makefile.in The H5FDgass.h file is public and must be installed in order for applications to be able to use HDF5. ./tools/h5tools.c Removed an unused variable.
* [svn-r1731] Snapshot version 1.3 release 1Albert Cheng1999-10-062-2/+2
|
* [svn-r1730] Close & re-open the file to make certain that the VL datatype ↵Quincey Koziol1999-10-061-1/+41
| | | | | | information is being written correctly.
* [svn-r1729] Put in "alias" for old H5P_DATASET_XFER to map it to the new ↵Quincey Koziol1999-10-061-0/+4
| | | | | | H5P_DATA_XFER. This should eventually be deprecated and the alias removed.
* [svn-r1728] Corrected two bugs in VL types, one in which the wrong length of ↵Quincey Koziol1999-10-061-4/+8
| | | | | | | the buffer needed for the object header was being computed and another in incorrectly decoding the "base" type of the VL type.
* [svn-r1727] Updated it with new file.Albert Cheng1999-10-061-0/+1
|
* [svn-r1725] updated the config file to print the long longPatrick Lu1999-10-061-0/+0
|
* [svn-r1710] put in an entry for the objectids that i dump with the verbose ↵hdf5-1_3_1Patrick Lu1999-10-011-12/+16
| | | | option
* [svn-r1709] *** empty log message ***Patrick Lu1999-10-011-2/+6
|
* [svn-r1708] Turned off compression feature if zlib.h is off.Albert Cheng1999-10-011-0/+3
|
* [svn-r1707] Changed to different locations or filenames.Albert Cheng1999-10-014-256/+3
| | | | | | INSTALL.ascired -> INSTALL_TFLOPS INSTALL.ibm.sp.parallel -> bin/config_para_ibm_sp.sh INSTALL_parallel.ascired -> bin/config_para_tflops.sh
* [svn-r1705] update the testhdf5 and testhdf5dll projects to include the new filePatrick Lu1999-10-011-0/+0
|
* [svn-r1704] Used n.m. numbers to identify paragraphs. Added a table of content.Albert Cheng1999-10-011-38/+83
|
* [svn-r1702] Closed some more memory leaks on failure conditions...Quincey Koziol1999-10-011-0/+6
|
* [svn-r1701] Closed a couple more resouce leaks..Quincey Koziol1999-09-302-1/+3
|
* [svn-r1700] Changed names of files to better reflect their purposes.Albert Cheng1999-09-303-0/+253
| | | | | | | | | INSTALL.ascired: Becomes INSTALL_TFLOPS. INSTALL_parallel.ascired: Becomes bin/config_para_tflops.sh INSTALL.ibm.sp.parallel: Becomes bin/config_para_ibm_sp.sh
* [svn-r1697] Changes since 19990915Robb Matzke1999-09-306-96/+214
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ---------------------- ./src/H5public.h We undefine a bunch of things that could get redefined in the config file because some customers have applications that include headers from multiple packages, all of which might be using autoconf. Include <stdint.h> for the C9x types. ./test/h5test.h More flushing of stdout for when testing is redirected down a pipe. ./tools/h5ls.c Added a `-S' or `--simple' switch which causes the output to be simplified somewhat for easier parsing by other scripts. For instance, characters are escaped using a very simple mechanism instead of C's more complicated backslash notation, data doesn't have `{}' or `[]' characters interspersed for compound and array types, and data is printed with exactly one element per line. This switch is now used by an HDF5-to-HTML CGI script being developed for the DMF people. ./tools/h5tools.c ./tools/h5tools.h The repeat threshold which controls how strings are printed when a character repeats a bunch of times is now settable at runtime instead of compile time. The default is to show all characters, like "abceeeeeeeeeeeeeeeeeeeeeeeeeeeeeefgh" But if you set it to something like 5 then any sequence of 5 or more characters is replaced by something shorter, like: "abc" 'e'x30 "fgh" or Added an `str_locale' property which describes how to escape special characters in strings. The default is C-like escapes but an alternative is ESCAPE_HTML which replaces all non-alphanumeric characters with a 3-character HTML escape of the form `%XX' Fixed a bug where empty strings didn't even have the quote characters printed. Now empty strings show up as `""' instead of absolutely nothing. Added a `per_line' property which controls the maximum number of elements which will appear per line of output. The default is infinity but in practice the right margin causes line breaks. By setting the `per_line' value to one and the right margin to a very large value one can achieve output with exactly one element per line.
* [svn-r1696] Closed file handle leak for some failure cases.Quincey Koziol1999-09-302-4/+5
|
* [svn-r1695] Fixed various compiler warnings..Quincey Koziol1999-09-308-17/+20
|
* [svn-r1694] Fixed various compiler warningsQuincey Koziol1999-09-302-3/+3
|
* [svn-r1693] removed the last warnings from herePatrick Lu1999-09-293-6/+6
|
* [svn-r1691] Portability tweaks and warnings fixedQuincey Koziol1999-09-295-4/+16
|
* [svn-r1690] Added VL string test code.Quincey Koziol1999-09-294-3/+265
|