1998-09-08 21:38:29 +08:00
|
|
|
#------------------------------------------------------------------------------
|
2001-10-17 00:40:38 +08:00
|
|
|
# This is the list of files that are part of HDF5 source distribution.
|
|
|
|
# All files have a `./' prefix and appear in lexicographic order.
|
|
|
|
# Lines that end with _DO_NOT_DISTRIBUTE_ will not be included in a
|
|
|
|
# release. Blank lines and comments are ignored. Comments must start
|
|
|
|
# in column one with a '#'.
|
1998-09-08 21:38:29 +08:00
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
|
1998-07-15 13:42:11 +08:00
|
|
|
./COPYING
|
1998-02-17 05:26:59 +08:00
|
|
|
./MANIFEST
|
1998-01-30 00:31:24 +08:00
|
|
|
./Makefile.dist
|
1997-08-16 00:35:53 +08:00
|
|
|
./Makefile.in
|
2001-07-06 00:36:40 +08:00
|
|
|
./README.txt
|
1999-03-03 01:15:35 +08:00
|
|
|
./aclocal.m4
|
1998-09-08 21:38:29 +08:00
|
|
|
./configure
|
|
|
|
./configure.in
|
|
|
|
|
|
|
|
./bin/checkapi _DO_NOT_DISTRIBUTE_
|
|
|
|
./bin/checkposix _DO_NOT_DISTRIBUTE_
|
1999-10-27 03:34:29 +08:00
|
|
|
./bin/chkmanifest
|
1997-08-16 00:35:53 +08:00
|
|
|
./bin/config.guess
|
|
|
|
./bin/config.sub
|
1999-10-02 02:00:02 +08:00
|
|
|
./bin/config_para_ibm_sp.sh
|
|
|
|
./bin/config_para_tflops.sh
|
1998-09-08 21:38:29 +08:00
|
|
|
./bin/debug-ohdr _DO_NOT_DISTRIBUTE_
|
2001-08-02 05:00:25 +08:00
|
|
|
./bin/dependencies
|
1998-03-19 02:09:16 +08:00
|
|
|
./bin/distdep
|
1998-09-08 21:38:29 +08:00
|
|
|
./bin/errors _DO_NOT_DISTRIBUTE_
|
1998-07-18 03:03:43 +08:00
|
|
|
./bin/h5vers
|
1997-08-16 00:35:53 +08:00
|
|
|
./bin/install-sh
|
1998-07-18 03:03:43 +08:00
|
|
|
./bin/iostats
|
2001-01-27 06:02:55 +08:00
|
|
|
./bin/locate_hdf4
|
1999-03-03 01:15:35 +08:00
|
|
|
./bin/ltmain.sh
|
2001-09-22 07:50:15 +08:00
|
|
|
./bin/mkdirs
|
1998-01-30 00:31:24 +08:00
|
|
|
./bin/release
|
2001-01-27 06:02:55 +08:00
|
|
|
./bin/runtest _DO_NOT_DISTRIBUTE_
|
1998-07-31 04:38:31 +08:00
|
|
|
./bin/snapshot
|
2002-03-06 22:49:10 +08:00
|
|
|
./bin/snapshot_version _DO_NOT_DISTRIBUTE_
|
[svn-r429] Changes since 19980616
----------------------
./html/tracing.html NEW
This entire update is to make it possible for the library to
print the name, arguments, and return value of every API call
without requiring any extra work from developers or app
programmers. This file describes how this all works.
./configure.in
Added the `--enable-tracing' switch. If you use it then the
library will include code to print API function names,
argument names and values, and function return values.
However, you must then turn on the tracing by setting the
HDF5_TRACE environment variable to a file descriptor number.
The default is `--disable-tracing' since enabling it causes a
slight increase in library size and a slowdown resulting from
an extra function call for each API function call (I couldn't
even measure the slowdown :-)
./bin/trace NEW
A perl script that synchronizes the H5TRACE() macro calls in
the *.c files with the function return type and formal
argument names and types. If you use GNU make and gcc then
this will be done automatically, otherwise just invoke this
script with the names of one or more .c files. You could do
it by hand to, but encoding argument types is a little tricky
at first.
./config/commence.in
Added the $(TRACE) macro, which defaults to the no-op.
Added -D_POSIX_SOURCE to the compiler command line.
./src/Makefile.in
Override the default for $(TRACE).
./config/depend.in
Automatically calls $(TRACE) to synchronize the H5TRACE()
macros in any source file that changed. As with makefile
dependencies, one way to force synchronization of all files is
to remove the `.depend' file.
./MANIFEST
Added new files.
./src/H5Eprivate.h
Modified HRETURN_ERROR() and HRETURN() for tracing.
./src/H5.c
./src/H5private.h
This is where the real tracing work really happens, in
H5_trace().
./src/H5A.c
./src/H5D.c
./src/H5G.c
./src/H5P.c
./src/H5S.c
./src/H5Z.c
Added H5TRACE() calls to all API functions. You don't really
need these changes if you don't want to merge your stuff
because they can be generated automatically by going to the
hdf5/src directory and saying ../bin/trace *.c
./src/H5T.c
Added H5TRACE() calls. Other stuff below.
./src/H5E.c
./src/H5Epublic.h
Added H5TRACE() calls. Created a type H5E_auto_t for the
`func' argument of H5Eset_auto() and H5Eget_auto() to make
those arguments easier to parse for tracing. It should also
make it clearer for users that don't know how to read
complicated ANSI data types.
./src/H5F.c
Added H5TRACE() calls. Changed a couple `uintn' argument
types in API functions to `unsigned int' since `uintn' part of
the API. Changed a few "can't" and "cant" error messages to
"unable to".
./src/H5Ipublic.h
Removed H5_DIRECTORY from the H5I_group_t enum. It wasn't
used anywhere.
./src/H5Tconv.c
Removed an unused label.
./src/H5Fistore.c
./src/H5Oattr.c
./src/H5Odtype.c
./src/H5T.c
./test/dsets.c
./test/dtypes.c
Fixed a warning about a variable possibly used before it's
initialized. Added __unused__ to turn off some unused
argument warnings that pop up when debugging is turned off and
optimizations are turned on.
1998-06-18 04:46:29 +08:00
|
|
|
./bin/trace
|
1998-09-08 21:38:29 +08:00
|
|
|
|
1998-04-03 11:29:38 +08:00
|
|
|
./config/BlankForm
|
1997-08-16 00:35:53 +08:00
|
|
|
./config/commence.in
|
|
|
|
./config/conclude.in
|
1999-03-05 04:22:42 +08:00
|
|
|
./config/dec-flags
|
1999-03-03 01:15:35 +08:00
|
|
|
./config/dec-osf4.x
|
2001-04-16 23:26:43 +08:00
|
|
|
./config/dec-osf5.x
|
1999-11-01 23:21:16 +08:00
|
|
|
./config/depend1.in
|
|
|
|
./config/depend2.in
|
|
|
|
./config/depend3.in
|
|
|
|
./config/depend4.in
|
|
|
|
./config/dependN.in
|
1999-02-16 01:38:04 +08:00
|
|
|
./config/freebsd
|
1999-03-05 04:22:42 +08:00
|
|
|
./config/gnu-flags
|
1998-02-11 00:38:55 +08:00
|
|
|
./config/hpux10.20
|
2000-06-22 00:38:05 +08:00
|
|
|
./config/hpux11.00
|
1998-09-24 23:51:05 +08:00
|
|
|
./config/hpux9.03
|
2000-02-19 09:01:55 +08:00
|
|
|
./config/i386-pc-cygwin32
|
1998-03-14 01:50:38 +08:00
|
|
|
./config/intel-osf1
|
1999-03-03 01:15:35 +08:00
|
|
|
./config/irix5.x
|
1999-01-29 08:16:36 +08:00
|
|
|
./config/irix6.x
|
1999-03-03 01:15:35 +08:00
|
|
|
./config/linux-gnu
|
|
|
|
./config/linux-gnulibc1
|
|
|
|
./config/linux-gnulibc2
|
1999-03-13 02:35:04 +08:00
|
|
|
./config/powerpc-ibm-aix4.x
|
|
|
|
./config/rs6000-ibm-aix4.x
|
|
|
|
./config/solaris2.x
|
2001-01-25 22:56:19 +08:00
|
|
|
./config/sv1-cray
|
2000-06-07 21:59:49 +08:00
|
|
|
./config/unicos
|
1999-02-23 23:42:30 +08:00
|
|
|
./config/unicosmk
|
2000-12-02 23:11:16 +08:00
|
|
|
./config/unicosmk2.0.X
|
2000-12-14 00:54:33 +08:00
|
|
|
./config/unicosmk2.0.5.X
|
1998-09-08 21:38:29 +08:00
|
|
|
|
2000-10-04 06:25:09 +08:00
|
|
|
./config/site-specific/BlankForm
|
|
|
|
|
1999-10-16 07:22:10 +08:00
|
|
|
./doc/Makefile.in
|
2000-12-22 04:40:13 +08:00
|
|
|
|
1998-07-09 00:48:48 +08:00
|
|
|
./doc/html/Attributes.html
|
|
|
|
./doc/html/Big.html
|
|
|
|
./doc/html/Caching.html
|
1998-10-23 23:44:02 +08:00
|
|
|
./doc/html/Chunking.html
|
|
|
|
./doc/html/Chunk_f1.gif
|
|
|
|
./doc/html/Chunk_f1.obj _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/html/Chunk_f2.gif
|
|
|
|
./doc/html/Chunk_f2.obj _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/html/Chunk_f3.gif
|
|
|
|
./doc/html/Chunk_f4.gif
|
|
|
|
./doc/html/Chunk_f5.gif
|
|
|
|
./doc/html/Chunk_f6.gif
|
|
|
|
./doc/html/Chunk_f6.obj _DO_NOT_DISTRIBUTE_
|
1998-09-08 21:38:29 +08:00
|
|
|
./doc/html/CodeReview.html _DO_NOT_DISTRIBUTE_
|
1998-07-09 00:48:48 +08:00
|
|
|
./doc/html/Coding.html
|
1998-09-11 21:56:20 +08:00
|
|
|
./doc/html/Copyright.html
|
1998-07-09 00:48:48 +08:00
|
|
|
./doc/html/Datasets.html
|
|
|
|
./doc/html/Dataspaces.html
|
|
|
|
./doc/html/Datatypes.html
|
1999-05-07 07:04:52 +08:00
|
|
|
./doc/html/DatatypesEnum.html
|
1999-11-03 22:30:40 +08:00
|
|
|
./doc/html/Dependencies
|
1998-10-30 09:26:52 +08:00
|
|
|
./doc/html/ddl.html
|
1998-08-20 06:46:31 +08:00
|
|
|
./doc/html/Debugging.html
|
1999-05-07 07:04:52 +08:00
|
|
|
./doc/html/EnumMap.gif
|
1998-09-11 21:56:20 +08:00
|
|
|
./doc/html/Environment.html
|
1998-07-09 00:48:48 +08:00
|
|
|
./doc/html/Errors.html
|
1998-09-08 21:38:29 +08:00
|
|
|
./doc/html/ExternalFiles.html _DO_NOT_DISTRIBUTE_
|
2000-03-13 22:51:42 +08:00
|
|
|
./doc/html/FF-IH_FileGroup.gif
|
|
|
|
./doc/html/FF-IH_FileObject.gif
|
1998-07-09 00:48:48 +08:00
|
|
|
./doc/html/Files.html
|
1998-08-07 03:39:22 +08:00
|
|
|
./doc/html/Filters.html
|
1998-07-15 13:42:11 +08:00
|
|
|
./doc/html/Glossary.html
|
1998-07-09 00:48:48 +08:00
|
|
|
./doc/html/Groups.html
|
|
|
|
./doc/html/H5.api_map.html
|
|
|
|
./doc/html/H5.format.html
|
|
|
|
./doc/html/H5.intro.html
|
|
|
|
./doc/html/H5.sample_code.html
|
|
|
|
./doc/html/H5.user.html
|
1999-07-08 06:39:58 +08:00
|
|
|
./doc/html/H5.user.PrintGen.html
|
|
|
|
./doc/html/H5.user.PrintTpg.html
|
1998-10-28 01:29:12 +08:00
|
|
|
./doc/html/IH_map1.gif
|
|
|
|
./doc/html/IH_map2.gif
|
|
|
|
./doc/html/IH_map3.gif
|
|
|
|
./doc/html/IH_map4.gif
|
|
|
|
./doc/html/IH_mapFoot.gif
|
|
|
|
./doc/html/IH_mapHead.gif
|
1998-07-09 00:48:48 +08:00
|
|
|
./doc/html/IOPipe.html
|
1999-10-16 07:22:10 +08:00
|
|
|
./doc/html/Lib_Maint.html _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/html/Makefile.in
|
1998-09-08 21:38:29 +08:00
|
|
|
./doc/html/MemoryManagement.html _DO_NOT_DISTRIBUTE_
|
2000-12-25 16:21:16 +08:00
|
|
|
./doc/html/MountingFiles.html
|
1999-01-07 05:58:34 +08:00
|
|
|
./doc/html/NCSAfooterlogo.gif
|
1998-09-08 21:38:29 +08:00
|
|
|
./doc/html/ObjectHeader.txt _DO_NOT_DISTRIBUTE_
|
2000-12-25 16:21:16 +08:00
|
|
|
./doc/html/Performance.html
|
2000-12-14 00:26:32 +08:00
|
|
|
./doc/html/PredefDTypes.html
|
1998-07-09 00:48:48 +08:00
|
|
|
./doc/html/Properties.html
|
1998-10-30 09:26:52 +08:00
|
|
|
./doc/html/References.html
|
1998-07-15 13:42:11 +08:00
|
|
|
./doc/html/RM_H5.html
|
|
|
|
./doc/html/RM_H5A.html
|
|
|
|
./doc/html/RM_H5D.html
|
|
|
|
./doc/html/RM_H5E.html
|
|
|
|
./doc/html/RM_H5F.html
|
|
|
|
./doc/html/RM_H5Front.html
|
|
|
|
./doc/html/RM_H5G.html
|
1998-10-30 09:26:52 +08:00
|
|
|
./doc/html/RM_H5I.html
|
1998-07-15 13:42:11 +08:00
|
|
|
./doc/html/RM_H5P.html
|
1998-10-30 09:26:52 +08:00
|
|
|
./doc/html/RM_H5R.html
|
1998-07-15 13:42:11 +08:00
|
|
|
./doc/html/RM_H5S.html
|
|
|
|
./doc/html/RM_H5T.html
|
|
|
|
./doc/html/RM_H5Z.html
|
2001-02-06 04:23:55 +08:00
|
|
|
./doc/html/Tools.html
|
|
|
|
./doc/html/Version.html
|
|
|
|
./doc/html/chunk1.gif
|
|
|
|
./doc/html/chunk1.obj _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/html/compat.html
|
|
|
|
./doc/html/dataset_p1.gif
|
|
|
|
./doc/html/dataset_p1.obj _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/html/extern1.gif
|
|
|
|
./doc/html/extern1.obj _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/html/extern2.gif
|
|
|
|
./doc/html/extern2.obj _DO_NOT_DISTRIBUTE_
|
|
|
|
|
|
|
|
./doc/html/ADGuide.html
|
|
|
|
./doc/html/ADGuide/Changes.html
|
|
|
|
./doc/html/ADGuide/Dependencies
|
|
|
|
./doc/html/ADGuide/H4toH5Mapping.pdf
|
|
|
|
./doc/html/ADGuide/H4toH5Mapping.doc _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/html/ADGuide/HISTORY.txt
|
|
|
|
./doc/html/ADGuide/ImageSpec.html
|
|
|
|
./doc/html/ADGuide/Makefile.in
|
|
|
|
./doc/html/ADGuide/PaletteExample1.gif
|
|
|
|
./doc/html/ADGuide/Palettes.fm.anc.gif
|
|
|
|
./doc/html/ADGuide/RELEASE.txt
|
|
|
|
|
|
|
|
./doc/html/Graphics/C++.gif
|
|
|
|
./doc/html/Graphics/Dependencies
|
|
|
|
./doc/html/Graphics/FORTRAN.gif
|
|
|
|
./doc/html/Graphics/Java.gif
|
|
|
|
./doc/html/Graphics/Makefile.in
|
|
|
|
./doc/html/Graphics/OtherAPIs.gif
|
|
|
|
|
2001-02-14 03:37:02 +08:00
|
|
|
./doc/html/Intro/Dependencies
|
2001-02-10 04:17:48 +08:00
|
|
|
./doc/html/Intro/IntroExamples.html
|
|
|
|
./doc/html/Intro/Makefile.in
|
|
|
|
|
2001-02-06 04:23:55 +08:00
|
|
|
./doc/html/PSandPDF/Dependencies
|
|
|
|
./doc/html/PSandPDF/Makefile.in
|
2000-08-29 00:39:32 +08:00
|
|
|
|
|
|
|
./doc/html/TechNotes.html
|
|
|
|
./doc/html/TechNotes/BigDataSmMach.html
|
|
|
|
./doc/html/TechNotes/ChStudy_1000x1000.gif
|
|
|
|
./doc/html/TechNotes/ChStudy_250x250.gif
|
|
|
|
./doc/html/TechNotes/ChStudy_499x499.gif
|
|
|
|
./doc/html/TechNotes/ChStudy_5000x1000.gif
|
|
|
|
./doc/html/TechNotes/ChStudy_500x500.gif
|
|
|
|
./doc/html/TechNotes/ChStudy_p1.gif
|
2001-02-07 03:27:31 +08:00
|
|
|
./doc/html/TechNotes/ChStudy_p1.obj _DO_NOT_DISTRIBUTE_
|
2000-08-29 00:39:32 +08:00
|
|
|
./doc/html/TechNotes/ChunkingStudy.html
|
|
|
|
./doc/html/TechNotes/CodeReview.html
|
2001-02-06 04:23:55 +08:00
|
|
|
./doc/html/TechNotes/Dependencies
|
2000-08-29 00:39:32 +08:00
|
|
|
./doc/html/TechNotes/ExternalFiles.html
|
|
|
|
./doc/html/TechNotes/FreeLists.html
|
|
|
|
./doc/html/TechNotes/H4-H5Compat.html
|
|
|
|
./doc/html/TechNotes/HeapMgmt.html
|
|
|
|
./doc/html/TechNotes/IOPipe.html
|
|
|
|
./doc/html/TechNotes/LibMaint.html
|
2001-02-06 04:23:55 +08:00
|
|
|
./doc/html/TechNotes/Makefile.in
|
2000-08-29 00:39:32 +08:00
|
|
|
./doc/html/TechNotes/MemoryMgmt.html
|
|
|
|
./doc/html/TechNotes/MoveDStruct.html
|
|
|
|
./doc/html/TechNotes/NamingScheme.html
|
|
|
|
./doc/html/TechNotes/ObjectHeader.html
|
|
|
|
./doc/html/TechNotes/RawDStorage.html
|
2000-09-27 22:03:06 +08:00
|
|
|
./doc/html/TechNotes/SWControls.html
|
2000-08-29 00:39:32 +08:00
|
|
|
./doc/html/TechNotes/SymbolTables.html
|
2000-10-27 23:59:34 +08:00
|
|
|
./doc/html/TechNotes/ThreadSafeLibrary.html
|
2000-10-19 06:45:32 +08:00
|
|
|
./doc/html/TechNotes/VFL.html
|
2000-10-20 01:17:47 +08:00
|
|
|
./doc/html/TechNotes/VFLfunc.html
|
2001-02-06 04:23:55 +08:00
|
|
|
./doc/html/TechNotes/Version.html
|
2000-12-02 23:11:16 +08:00
|
|
|
./doc/html/TechNotes/openmp-hdf5.c
|
2000-12-03 04:23:02 +08:00
|
|
|
./doc/html/TechNotes/openmp-hdf5.html
|
2000-08-29 00:39:32 +08:00
|
|
|
./doc/html/TechNotes/pipe1.gif
|
2001-02-06 04:23:55 +08:00
|
|
|
./doc/html/TechNotes/pipe1.obj _DO_NOT_DISTRIBUTE_
|
2000-08-29 00:39:32 +08:00
|
|
|
./doc/html/TechNotes/pipe2.gif
|
2001-02-06 04:23:55 +08:00
|
|
|
./doc/html/TechNotes/pipe2.obj _DO_NOT_DISTRIBUTE_
|
2000-08-29 00:39:32 +08:00
|
|
|
./doc/html/TechNotes/pipe3.gif
|
2001-02-06 04:23:55 +08:00
|
|
|
./doc/html/TechNotes/pipe3.obj _DO_NOT_DISTRIBUTE_
|
2000-08-29 00:39:32 +08:00
|
|
|
./doc/html/TechNotes/pipe4.gif
|
2001-02-06 04:23:55 +08:00
|
|
|
./doc/html/TechNotes/pipe4.obj _DO_NOT_DISTRIBUTE_
|
2000-08-29 00:39:32 +08:00
|
|
|
./doc/html/TechNotes/pipe5.gif
|
2001-02-06 04:23:55 +08:00
|
|
|
./doc/html/TechNotes/pipe5.obj _DO_NOT_DISTRIBUTE_
|
2000-08-29 00:39:32 +08:00
|
|
|
./doc/html/TechNotes/version.gif
|
2001-02-06 04:23:55 +08:00
|
|
|
./doc/html/TechNotes/version.obj _DO_NOT_DISTRIBUTE_
|
2000-12-23 05:03:51 +08:00
|
|
|
|
|
|
|
./doc/html/Tutor/Contents.html
|
|
|
|
./doc/html/Tutor/ContentsAdd.html
|
|
|
|
./doc/html/Tutor/ContentsAdv.html
|
|
|
|
./doc/html/Tutor/ContentsFull.html
|
|
|
|
./doc/html/Tutor/ContentsIntro.html
|
|
|
|
./doc/html/Tutor/Copyright.html
|
1999-11-03 22:30:40 +08:00
|
|
|
./doc/html/Tutor/Dependencies
|
1999-10-16 07:22:10 +08:00
|
|
|
./doc/html/Tutor/Makefile.in
|
2000-12-23 05:03:51 +08:00
|
|
|
./doc/html/Tutor/answers.html
|
|
|
|
./doc/html/Tutor/api.html
|
|
|
|
./doc/html/Tutor/bighdf2sp.JPG
|
|
|
|
./doc/html/Tutor/compound.html
|
|
|
|
./doc/html/Tutor/crtatt.html
|
|
|
|
./doc/html/Tutor/crtdat.html
|
|
|
|
./doc/html/Tutor/crtfile.html
|
|
|
|
./doc/html/Tutor/crtgrp.html
|
|
|
|
./doc/html/Tutor/crtgrpar.html
|
|
|
|
./doc/html/Tutor/crtgrpd.html
|
|
|
|
./doc/html/Tutor/extend.html
|
|
|
|
./doc/html/Tutor/fileorg.html
|
2001-06-23 02:46:26 +08:00
|
|
|
./doc/html/Tutor/footer-ncsalogo.gif
|
2000-12-23 05:03:51 +08:00
|
|
|
./doc/html/Tutor/glossary.html
|
|
|
|
./doc/html/Tutor/img001.gif
|
|
|
|
./doc/html/Tutor/img002.gif
|
|
|
|
./doc/html/Tutor/img003.gif
|
|
|
|
./doc/html/Tutor/img004.gif
|
|
|
|
./doc/html/Tutor/img005.gif
|
|
|
|
./doc/html/Tutor/index.html
|
|
|
|
./doc/html/Tutor/intro.html
|
|
|
|
./doc/html/Tutor/iterate.html
|
|
|
|
./doc/html/Tutor/mount.html
|
2001-03-09 01:38:06 +08:00
|
|
|
./doc/html/Tutor/property.html
|
2000-12-23 05:03:51 +08:00
|
|
|
./doc/html/Tutor/questions.html
|
|
|
|
./doc/html/Tutor/rdwt.html
|
|
|
|
./doc/html/Tutor/references.html
|
|
|
|
./doc/html/Tutor/reftoobj.html
|
|
|
|
./doc/html/Tutor/reftoreg.html
|
|
|
|
./doc/html/Tutor/select.html
|
|
|
|
./doc/html/Tutor/selectc.html
|
2001-03-09 01:38:06 +08:00
|
|
|
./doc/html/Tutor/software.html
|
2000-12-23 05:03:51 +08:00
|
|
|
./doc/html/Tutor/title.html
|
|
|
|
./doc/html/Tutor/util.html
|
|
|
|
|
|
|
|
./doc/html/Tutor/Graphics/AddInfo.gif
|
|
|
|
./doc/html/Tutor/Graphics/AdvTopics.gif
|
|
|
|
./doc/html/Tutor/Graphics/BLANK.gif
|
|
|
|
./doc/html/Tutor/Graphics/ChunkExt.gif
|
|
|
|
./doc/html/Tutor/Graphics/CompDTypes.gif
|
|
|
|
./doc/html/Tutor/Graphics/Copy.gif
|
|
|
|
./doc/html/Tutor/Graphics/CreateAttr.gif
|
|
|
|
./doc/html/Tutor/Graphics/CreateDset1.gif
|
|
|
|
./doc/html/Tutor/Graphics/CreateDset2.gif
|
|
|
|
./doc/html/Tutor/Graphics/CreateFile.gif
|
|
|
|
./doc/html/Tutor/Graphics/CreateGrp1.gif
|
|
|
|
./doc/html/Tutor/Graphics/CreateGrp2.gif
|
2001-02-06 04:23:55 +08:00
|
|
|
./doc/html/Tutor/Graphics/Dependencies
|
2000-12-23 05:03:51 +08:00
|
|
|
./doc/html/Tutor/Graphics/Examples.gif
|
|
|
|
./doc/html/Tutor/Graphics/FileOrg.gif
|
|
|
|
./doc/html/Tutor/Graphics/FullTOC1.gif
|
|
|
|
./doc/html/Tutor/Graphics/FullTOC2.gif
|
|
|
|
./doc/html/Tutor/Graphics/Glossary.gif
|
|
|
|
./doc/html/Tutor/Graphics/H5API.gif
|
|
|
|
./doc/html/Tutor/Graphics/Intro.gif
|
|
|
|
./doc/html/Tutor/Graphics/IntroTopics.gif
|
|
|
|
./doc/html/Tutor/Graphics/Iterate.gif
|
2001-02-06 04:23:55 +08:00
|
|
|
./doc/html/Tutor/Graphics/Makefile.in
|
2000-12-23 05:03:51 +08:00
|
|
|
./doc/html/Tutor/Graphics/MountFile.gif
|
|
|
|
./doc/html/Tutor/Graphics/Quiz.gif
|
|
|
|
./doc/html/Tutor/Graphics/QuizAns.gif
|
|
|
|
./doc/html/Tutor/Graphics/RdWrDataset.gif
|
|
|
|
./doc/html/Tutor/Graphics/RefObject.gif
|
|
|
|
./doc/html/Tutor/Graphics/RefRegion.gif
|
|
|
|
./doc/html/Tutor/Graphics/References.gif
|
|
|
|
./doc/html/Tutor/Graphics/SelectElemCp.gif
|
|
|
|
./doc/html/Tutor/Graphics/SelectHyp.gif
|
|
|
|
./doc/html/Tutor/Graphics/TOC.gif
|
|
|
|
./doc/html/Tutor/Graphics/TOCFull.gif
|
|
|
|
./doc/html/Tutor/Graphics/TOCShort.gif
|
|
|
|
./doc/html/Tutor/Graphics/TitlePg.gif
|
|
|
|
./doc/html/Tutor/Graphics/Utilities.gif
|
|
|
|
|
2001-02-06 04:23:55 +08:00
|
|
|
./doc/html/Tutor/examples/Dependencies
|
|
|
|
./doc/html/Tutor/examples/Makefile.in
|
2001-03-09 01:38:06 +08:00
|
|
|
./doc/html/Tutor/examples/attrexample.f90
|
|
|
|
./doc/html/Tutor/examples/chunk.f90
|
|
|
|
./doc/html/Tutor/examples/compound.f90
|
|
|
|
./doc/html/Tutor/examples/dsetexample.f90
|
|
|
|
./doc/html/Tutor/examples/fileexample.f90
|
|
|
|
./doc/html/Tutor/examples/groupexample.f90
|
|
|
|
./doc/html/Tutor/examples/grpdsetexample.f90
|
|
|
|
./doc/html/Tutor/examples/grpit.f90
|
|
|
|
./doc/html/Tutor/examples/grpsexample.f90
|
2000-12-23 05:03:51 +08:00
|
|
|
./doc/html/Tutor/examples/h5_compound.c
|
|
|
|
./doc/html/Tutor/examples/h5_copy.c
|
|
|
|
./doc/html/Tutor/examples/h5_crtatt.c
|
|
|
|
./doc/html/Tutor/examples/h5_crtdat.c
|
|
|
|
./doc/html/Tutor/examples/h5_crtfile.c
|
|
|
|
./doc/html/Tutor/examples/h5_crtgrp.c
|
|
|
|
./doc/html/Tutor/examples/h5_crtgrpar.c
|
|
|
|
./doc/html/Tutor/examples/h5_crtgrpd.c
|
|
|
|
./doc/html/Tutor/examples/h5_extend.c
|
|
|
|
./doc/html/Tutor/examples/h5_hyperslab.c
|
|
|
|
./doc/html/Tutor/examples/h5_iterate.c
|
|
|
|
./doc/html/Tutor/examples/h5_mount.c
|
|
|
|
./doc/html/Tutor/examples/h5_rdwt.c
|
|
|
|
./doc/html/Tutor/examples/h5_read.c
|
|
|
|
./doc/html/Tutor/examples/h5_ref2objr.c
|
|
|
|
./doc/html/Tutor/examples/h5_ref2objw.c
|
|
|
|
./doc/html/Tutor/examples/h5_ref2regr.c
|
|
|
|
./doc/html/Tutor/examples/h5_ref2regw.c
|
|
|
|
./doc/html/Tutor/examples/h5_reference.c
|
2001-03-09 01:38:06 +08:00
|
|
|
./doc/html/Tutor/examples/hyperslab.f90
|
|
|
|
./doc/html/Tutor/examples/mountexample.f90
|
|
|
|
./doc/html/Tutor/examples/refobjexample.f90
|
|
|
|
./doc/html/Tutor/examples/refregexample.f90
|
|
|
|
./doc/html/Tutor/examples/rwdsetexample.f90
|
|
|
|
./doc/html/Tutor/examples/selectele.f90
|
2000-12-23 05:03:51 +08:00
|
|
|
|
2001-03-09 01:38:06 +08:00
|
|
|
./doc/html/Tutor/examples/java/Compound.java
|
|
|
|
./doc/html/Tutor/examples/java/Copy.java
|
|
|
|
./doc/html/Tutor/examples/java/CreateAttribute.java
|
|
|
|
./doc/html/Tutor/examples/java/CreateDataset.java
|
|
|
|
./doc/html/Tutor/examples/java/CreateFile.java
|
|
|
|
./doc/html/Tutor/examples/java/CreateFileInput.java
|
|
|
|
./doc/html/Tutor/examples/java/CreateGroup.java
|
|
|
|
./doc/html/Tutor/examples/java/CreateGroupAR.java
|
|
|
|
./doc/html/Tutor/examples/java/CreateGroupDataset.java
|
|
|
|
./doc/html/Tutor/examples/java/DatasetRdWt.java
|
2001-02-06 04:23:55 +08:00
|
|
|
./doc/html/Tutor/examples/java/Dependencies
|
2001-03-09 01:38:06 +08:00
|
|
|
./doc/html/Tutor/examples/java/HyperSlab.java
|
2001-02-06 04:23:55 +08:00
|
|
|
./doc/html/Tutor/examples/java/Makefile.in
|
2001-03-09 01:38:06 +08:00
|
|
|
./doc/html/Tutor/examples/java/Makefile
|
|
|
|
./doc/html/Tutor/examples/java/README
|
|
|
|
./doc/html/Tutor/examples/java/readme.html
|
|
|
|
./doc/html/Tutor/examples/java/runCompound.sh
|
|
|
|
./doc/html/Tutor/examples/java/runCompound.sh.in
|
|
|
|
./doc/html/Tutor/examples/java/runCopy.sh
|
|
|
|
./doc/html/Tutor/examples/java/runCopy.sh.in
|
|
|
|
./doc/html/Tutor/examples/java/runCreateAttribute.sh
|
|
|
|
./doc/html/Tutor/examples/java/runCreateAttribute.sh.in
|
|
|
|
./doc/html/Tutor/examples/java/runCreateDataset.sh
|
|
|
|
./doc/html/Tutor/examples/java/runCreateDataset.sh.in
|
|
|
|
./doc/html/Tutor/examples/java/runCreateFile.sh
|
|
|
|
./doc/html/Tutor/examples/java/runCreateFile.sh.in
|
|
|
|
./doc/html/Tutor/examples/java/runCreateFileInput.sh
|
|
|
|
./doc/html/Tutor/examples/java/runCreateFileInput.sh.in
|
|
|
|
./doc/html/Tutor/examples/java/runCreateGroup.sh
|
|
|
|
./doc/html/Tutor/examples/java/runCreateGroup.sh.in
|
|
|
|
./doc/html/Tutor/examples/java/runCreateGroupAR.sh
|
|
|
|
./doc/html/Tutor/examples/java/runCreateGroupAR.sh.in
|
|
|
|
./doc/html/Tutor/examples/java/runCreateGroupDataset.sh
|
|
|
|
./doc/html/Tutor/examples/java/runCreateGroupDataset.sh.in
|
|
|
|
./doc/html/Tutor/examples/java/runDatasetRdWt.sh
|
|
|
|
./doc/html/Tutor/examples/java/runDatasetRdWt.sh.in
|
|
|
|
./doc/html/Tutor/examples/java/runHyperSlab.sh
|
|
|
|
./doc/html/Tutor/examples/java/runHyperSlab.sh.in
|
2000-07-18 23:04:35 +08:00
|
|
|
|
2000-12-27 05:34:59 +08:00
|
|
|
./doc/html/cpplus/CppInterfaces.html
|
|
|
|
./doc/html/cpplus/CppUserNotes.doc
|
|
|
|
./doc/html/cpplus/CppUserNotes.pdf
|
2001-02-06 04:23:55 +08:00
|
|
|
./doc/html/cpplus/Dependencies
|
|
|
|
./doc/html/cpplus/Makefile.in
|
2000-12-27 05:34:59 +08:00
|
|
|
|
2001-02-06 04:23:55 +08:00
|
|
|
./doc/html/fortran/Dependencies
|
2001-07-03 02:18:27 +08:00
|
|
|
./doc/html/fortran/F90Flags.html
|
2000-12-22 04:40:13 +08:00
|
|
|
./doc/html/fortran/F90UserNotes.html
|
2001-02-06 04:23:55 +08:00
|
|
|
./doc/html/fortran/Makefile.in
|
2001-07-03 02:18:27 +08:00
|
|
|
./doc/html/fortran/h5_FORTRAN.html
|
2000-07-18 23:04:35 +08:00
|
|
|
./doc/html/fortran/h5a_FORTRAN.html
|
|
|
|
./doc/html/fortran/h5d_FORTRAN.html
|
|
|
|
./doc/html/fortran/h5e_FORTRAN.html
|
|
|
|
./doc/html/fortran/h5f_FORTRAN.html
|
|
|
|
./doc/html/fortran/h5g_FORTRAN.html
|
|
|
|
./doc/html/fortran/h5i_FORTRAN.html
|
|
|
|
./doc/html/fortran/h5p_FORTRAN.html
|
|
|
|
./doc/html/fortran/h5r_FORTRAN.html
|
|
|
|
./doc/html/fortran/h5s_FORTRAN.html
|
|
|
|
./doc/html/fortran/h5t_FORTRAN.html
|
|
|
|
|
1998-07-09 00:48:48 +08:00
|
|
|
./doc/html/group_p1.gif
|
1998-09-08 21:38:29 +08:00
|
|
|
./doc/html/group_p1.obj _DO_NOT_DISTRIBUTE_
|
1998-07-09 00:48:48 +08:00
|
|
|
./doc/html/group_p2.gif
|
1998-09-08 21:38:29 +08:00
|
|
|
./doc/html/group_p2.obj _DO_NOT_DISTRIBUTE_
|
1998-07-09 00:48:48 +08:00
|
|
|
./doc/html/group_p3.gif
|
1998-09-08 21:38:29 +08:00
|
|
|
./doc/html/group_p3.obj _DO_NOT_DISTRIBUTE_
|
1998-07-09 00:48:48 +08:00
|
|
|
./doc/html/h5s.examples
|
1999-01-07 05:58:34 +08:00
|
|
|
./doc/html/hdf2.jpg
|
1998-07-09 00:48:48 +08:00
|
|
|
./doc/html/ph5design.html
|
|
|
|
./doc/html/ph5example.c
|
|
|
|
./doc/html/ph5implement.txt
|
|
|
|
./doc/html/pipe1.gif
|
1998-09-08 21:38:29 +08:00
|
|
|
./doc/html/pipe1.obj _DO_NOT_DISTRIBUTE_
|
1998-07-09 00:48:48 +08:00
|
|
|
./doc/html/pipe2.gif
|
1998-09-08 21:38:29 +08:00
|
|
|
./doc/html/pipe2.obj _DO_NOT_DISTRIBUTE_
|
1998-07-09 00:48:48 +08:00
|
|
|
./doc/html/pipe3.gif
|
1998-09-08 21:38:29 +08:00
|
|
|
./doc/html/pipe3.obj _DO_NOT_DISTRIBUTE_
|
1998-07-09 00:48:48 +08:00
|
|
|
./doc/html/pipe4.gif
|
1998-09-08 21:38:29 +08:00
|
|
|
./doc/html/pipe4.obj _DO_NOT_DISTRIBUTE_
|
1998-07-09 00:48:48 +08:00
|
|
|
./doc/html/pipe5.gif
|
1998-09-08 21:38:29 +08:00
|
|
|
./doc/html/pipe5.obj _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/html/heap.txt _DO_NOT_DISTRIBUTE_
|
1998-07-09 00:48:48 +08:00
|
|
|
./doc/html/index.html
|
1998-09-08 21:38:29 +08:00
|
|
|
./doc/html/move.html _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/html/review1.html _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/html/review1a.html _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/html/storage.html _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/html/symtab _DO_NOT_DISTRIBUTE_
|
1998-07-09 00:48:48 +08:00
|
|
|
./doc/html/version.gif
|
1998-09-08 21:38:29 +08:00
|
|
|
./doc/html/version.obj _DO_NOT_DISTRIBUTE_
|
1998-10-30 09:26:52 +08:00
|
|
|
./doc/src/Copyright.html _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/src/Glossary.html _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/src/H5.intro.doc _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/src/RM_H5.html _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/src/RM_H5A.html _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/src/RM_H5D.html _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/src/RM_H5E.html _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/src/RM_H5F.html _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/src/RM_H5Front.html _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/src/RM_H5G.html _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/src/RM_H5P.html _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/src/RM_H5R.html _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/src/RM_H5S.html _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/src/RM_H5T.html _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/src/RM_H5Z.html _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/src/Tools.html _DO_NOT_DISTRIBUTE_
|
1998-09-08 21:38:29 +08:00
|
|
|
./doc/tgif/APIGrammar.obj _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/tgif/FileGrammar.obj _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/tgif/IOPipe.obj _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/tgif/RobbPipe.obj _DO_NOT_DISTRIBUTE_
|
|
|
|
./doc/tgif/UserView.obj _DO_NOT_DISTRIBUTE_
|
1998-09-11 23:39:28 +08:00
|
|
|
|
1998-07-09 02:41:04 +08:00
|
|
|
./examples/Attributes.txt
|
1999-11-03 22:30:40 +08:00
|
|
|
./examples/Dependencies
|
1998-07-09 02:41:04 +08:00
|
|
|
./examples/Makefile.in
|
|
|
|
./examples/h5_chunk_read.c
|
|
|
|
./examples/h5_compound.c
|
2001-09-18 13:56:34 +08:00
|
|
|
./examples/h5_drivers.c
|
1998-07-09 02:41:04 +08:00
|
|
|
./examples/h5_extend_write.c
|
|
|
|
./examples/h5_group.c
|
|
|
|
./examples/h5_read.c
|
|
|
|
./examples/h5_write.c
|
1998-09-01 21:02:15 +08:00
|
|
|
./examples/h5_select.c
|
|
|
|
./examples/h5_attribute.c
|
1999-06-26 02:11:57 +08:00
|
|
|
./examples/h5_mount.c
|
|
|
|
./examples/h5_reference.c
|
2001-04-25 05:11:35 +08:00
|
|
|
./examples/ph5example.c
|
2001-06-16 03:02:48 +08:00
|
|
|
|
1998-09-08 21:38:29 +08:00
|
|
|
|
2000-09-20 23:22:46 +08:00
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Begin Fortran interface
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
./fortran/Makefile.dist
|
|
|
|
./fortran/Makefile.in
|
|
|
|
./fortran/aclocal.m4
|
|
|
|
./fortran/acsite.m4
|
|
|
|
./fortran/configure
|
|
|
|
./fortran/configure.in
|
|
|
|
|
|
|
|
./fortran/config/BlankForm
|
|
|
|
./fortran/config/commence.in
|
|
|
|
./fortran/config/conclude.in
|
|
|
|
./fortran/config/dec-flags
|
|
|
|
./fortran/config/dec-osf4.x
|
2001-04-16 23:26:43 +08:00
|
|
|
./fortran/config/dec-osf5.x
|
2000-09-20 23:22:46 +08:00
|
|
|
./fortran/config/depend
|
|
|
|
./fortran/config/depend1.in
|
|
|
|
./fortran/config/depend2.in
|
|
|
|
./fortran/config/depend3.in
|
|
|
|
./fortran/config/depend4.in
|
|
|
|
./fortran/config/dependN.in
|
|
|
|
./fortran/config/freebsd
|
|
|
|
./fortran/config/gnu-flags
|
|
|
|
./fortran/config/hpux10.20
|
|
|
|
./fortran/config/hpux11.00
|
|
|
|
./fortran/config/hpux9.03
|
|
|
|
./fortran/config/i386-pc-cygwin32
|
|
|
|
./fortran/config/intel-osf1
|
|
|
|
./fortran/config/irix5.x
|
|
|
|
./fortran/config/irix6.x
|
|
|
|
./fortran/config/linux-gnu
|
|
|
|
./fortran/config/linux-gnulibc1
|
|
|
|
./fortran/config/linux-gnulibc2
|
|
|
|
./fortran/config/powerpc-ibm-aix4.2.1.0
|
|
|
|
./fortran/config/powerpc-ibm-aix4.3.2.0
|
|
|
|
./fortran/config/powerpc-ibm-aix4.x
|
|
|
|
./fortran/config/rs6000-ibm-aix4.x
|
|
|
|
./fortran/config/solaris2.x
|
2001-01-25 22:56:19 +08:00
|
|
|
./fortran/config/sv1-cray
|
2000-09-20 23:22:46 +08:00
|
|
|
./fortran/config/unicos
|
|
|
|
./fortran/config/unicosmk
|
2000-12-02 23:11:16 +08:00
|
|
|
./fortran/config/unicosmk2.0.X
|
2000-12-14 00:54:33 +08:00
|
|
|
./fortran/config/unicosmk2.0.5.X
|
2000-09-20 23:22:46 +08:00
|
|
|
|
|
|
|
./fortran/examples/Dependencies
|
|
|
|
./fortran/examples/Makefile.in
|
|
|
|
./fortran/examples/attrexample.f90
|
|
|
|
./fortran/examples/compound.f90
|
|
|
|
./fortran/examples/dsetexample.f90
|
|
|
|
./fortran/examples/fileexample.f90
|
|
|
|
./fortran/examples/groupexample.f90
|
|
|
|
./fortran/examples/grpdsetexample.f90
|
|
|
|
./fortran/examples/grpit.f90
|
|
|
|
./fortran/examples/grpsexample.f90
|
|
|
|
./fortran/examples/hyperslab.f90
|
|
|
|
./fortran/examples/mountexample.f90
|
|
|
|
./fortran/examples/refobjexample.f90
|
|
|
|
./fortran/examples/refregexample.f90
|
|
|
|
./fortran/examples/run_examples.sh
|
|
|
|
./fortran/examples/rwdsetexample.f90
|
|
|
|
./fortran/examples/selectele.f90
|
|
|
|
|
|
|
|
./fortran/src/Dependencies
|
2001-04-29 09:12:16 +08:00
|
|
|
./fortran/src/H5_f.c
|
|
|
|
./fortran/src/H5_ff.f90
|
2000-09-20 23:22:46 +08:00
|
|
|
./fortran/src/H5Af.c
|
|
|
|
./fortran/src/H5Aff.f90
|
2002-04-24 04:02:26 +08:00
|
|
|
./fortran/src/H5config_fortran.h.in
|
2000-09-20 23:22:46 +08:00
|
|
|
./fortran/src/H5Df.c
|
|
|
|
./fortran/src/H5Dff.f90
|
|
|
|
./fortran/src/H5Ef.c
|
|
|
|
./fortran/src/H5Eff.f90
|
2000-11-01 01:58:37 +08:00
|
|
|
./fortran/src/H5FDmpiof.c
|
|
|
|
./fortran/src/H5FDmpioff.f90
|
2000-09-20 23:22:46 +08:00
|
|
|
./fortran/src/H5Ff.c
|
|
|
|
./fortran/src/H5Fff.f90
|
|
|
|
./fortran/src/H5Gf.c
|
|
|
|
./fortran/src/H5Gff.f90
|
|
|
|
./fortran/src/H5Git.c
|
|
|
|
./fortran/src/H5Git.h
|
|
|
|
./fortran/src/H5If.c
|
|
|
|
./fortran/src/H5Iff.f90
|
|
|
|
./fortran/src/H5Pf.c
|
|
|
|
./fortran/src/H5Pff.f90
|
|
|
|
./fortran/src/H5Rf.c
|
|
|
|
./fortran/src/H5Rff.f90
|
|
|
|
./fortran/src/H5Sf.c
|
|
|
|
./fortran/src/H5Sff.f90
|
|
|
|
./fortran/src/H5Tf.c
|
|
|
|
./fortran/src/H5Tff.f90
|
|
|
|
./fortran/src/H5f90.h
|
|
|
|
./fortran/src/H5f90global.f90
|
|
|
|
./fortran/src/H5f90i.h
|
|
|
|
./fortran/src/H5f90kit.c
|
|
|
|
./fortran/src/H5f90proto.h
|
|
|
|
./fortran/src/H5fortran_flags.f90
|
|
|
|
./fortran/src/H5fortran_types.f90.in
|
|
|
|
./fortran/src/HDF5.f90
|
2000-11-01 01:58:37 +08:00
|
|
|
./fortran/src/HDF5mpio.f90
|
2000-09-20 23:22:46 +08:00
|
|
|
./fortran/src/Makefile.in
|
|
|
|
./fortran/src/README
|
|
|
|
|
|
|
|
./fortran/test/Dependencies
|
|
|
|
./fortran/test/Makefile.in
|
|
|
|
./fortran/test/fflush1.f90
|
|
|
|
./fortran/test/fflush2.f90
|
|
|
|
./fortran/test/fortranlib_test.f90
|
|
|
|
./fortran/test/hdf5test.f90
|
2000-10-25 03:01:25 +08:00
|
|
|
./fortran/test/tH5A.f90
|
2000-09-20 23:22:46 +08:00
|
|
|
./fortran/test/tH5D.f90
|
2001-11-27 23:07:15 +08:00
|
|
|
./fortran/test/tH5E.f90
|
2000-09-20 23:22:46 +08:00
|
|
|
./fortran/test/tH5F.f90
|
2000-11-08 23:25:23 +08:00
|
|
|
./fortran/test/tH5G.f90
|
2000-10-25 03:01:25 +08:00
|
|
|
./fortran/test/tH5I.f90
|
2000-09-20 23:22:46 +08:00
|
|
|
./fortran/test/tH5P.f90
|
|
|
|
./fortran/test/tH5R.f90
|
|
|
|
./fortran/test/tH5S.f90
|
|
|
|
./fortran/test/tH5Sselect.f90
|
|
|
|
./fortran/test/tH5T.f90
|
|
|
|
|
2000-11-02 01:41:33 +08:00
|
|
|
./fortran/testpar/Dependencies
|
2000-11-01 04:21:06 +08:00
|
|
|
./fortran/testpar/Makefile.in
|
2000-10-31 22:27:02 +08:00
|
|
|
./fortran/testpar/ptesthdf5_fortran.f90
|
|
|
|
./fortran/testpar/tcheck.f90
|
|
|
|
./fortran/testpar/thdf5.f90
|
2000-10-31 23:45:25 +08:00
|
|
|
./fortran/testpar/thyperslab_wr.f90
|
2000-10-31 22:27:02 +08:00
|
|
|
|
2000-09-20 23:22:46 +08:00
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# End Fortran interface
|
2000-11-15 07:20:32 +08:00
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Begin C++ interface
|
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
./c++/Makefile.in
|
|
|
|
./c++/aclocal.m4
|
|
|
|
./c++/configure
|
|
|
|
./c++/configure.in
|
|
|
|
|
|
|
|
./c++/config/BlankForm
|
|
|
|
./c++/config/commence.in
|
|
|
|
./c++/config/conclude.in
|
|
|
|
./c++/config/depend1.in
|
|
|
|
./c++/config/depend2.in
|
|
|
|
./c++/config/depend3.in
|
|
|
|
./c++/config/depend4.in
|
|
|
|
./c++/config/dependN.in
|
|
|
|
./c++/config/linux-gnu
|
|
|
|
./c++/config/linux-gnulibc1
|
|
|
|
./c++/config/linux-gnulibc2
|
2001-11-29 04:55:43 +08:00
|
|
|
./c++/config/rs6000-ibm-aix4.x
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/config/solaris2.x
|
2002-01-21 21:03:52 +08:00
|
|
|
./c++/config/irix6.x
|
2000-11-15 07:20:32 +08:00
|
|
|
|
2000-11-16 01:45:46 +08:00
|
|
|
./c++/examples/Dependencies
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/examples/Attributes.h5
|
|
|
|
./c++/examples/Group.h5
|
|
|
|
./c++/examples/SDS.h5
|
|
|
|
./c++/examples/SDScompound.h5
|
|
|
|
./c++/examples/SDSextendible.h5
|
|
|
|
./c++/examples/Select.h5
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/examples/chunks.cpp
|
|
|
|
./c++/examples/compound.cpp
|
|
|
|
./c++/examples/create.cpp
|
2000-12-09 00:50:22 +08:00
|
|
|
./c++/examples/expected.out
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/examples/extend_ds.cpp
|
|
|
|
./c++/examples/h5group.cpp
|
|
|
|
./c++/examples/readdata.cpp
|
2000-12-09 00:50:22 +08:00
|
|
|
./c++/examples/testexamples.sh
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/examples/writedata.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/examples/Makefile.in
|
|
|
|
|
2000-11-16 01:45:46 +08:00
|
|
|
./c++/src/Dependencies
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5AbstractDs.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5AbstractDs.h
|
|
|
|
./c++/src/H5Alltypes.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5AtomType.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5AtomType.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5Attribute.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5Attribute.h
|
|
|
|
./c++/src/H5Classes.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5CommonFG.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5CommonFG.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5CompType.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5CompType.h
|
|
|
|
./c++/src/H5Cpp.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5DataSet.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5DataSet.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5DataSpace.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5DataSpace.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5DataType.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5DataType.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5DcreatProp.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5DcreatProp.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5DxferProp.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5DxferProp.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5EnumType.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5EnumType.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5Exception.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5Exception.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5FaccProp.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5FaccProp.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5FcreatProp.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5FcreatProp.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5File.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5File.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5FloatType.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5FloatType.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5Group.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5Group.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5IdComponent.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5IdComponent.h
|
|
|
|
./c++/src/H5Idtemplates.h
|
|
|
|
./c++/src/H5Include.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5IntType.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5IntType.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5Library.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5Library.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5Object.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5Object.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5PredType.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5PredType.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5PropList.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5PropList.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5RefCounter.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5RefCounter.h
|
2000-12-08 04:29:18 +08:00
|
|
|
./c++/src/H5StrType.cpp
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/src/H5StrType.h
|
|
|
|
./c++/src/Makefile.in
|
|
|
|
|
2000-11-16 01:45:46 +08:00
|
|
|
./c++/test/Dependencies
|
2000-11-15 07:20:32 +08:00
|
|
|
./c++/test/Makefile.in
|
2001-03-06 00:25:56 +08:00
|
|
|
./c++/test/dsets.cpp
|
|
|
|
./c++/test/testhdf5.cpp
|
|
|
|
./c++/test/tfile.cpp
|
2001-03-15 02:30:42 +08:00
|
|
|
./c++/test/th5s.cpp
|
2001-03-16 03:20:25 +08:00
|
|
|
./c++/test/th5s.h5
|
2000-11-15 07:20:32 +08:00
|
|
|
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# End C++ interface
|
2000-09-20 23:22:46 +08:00
|
|
|
#
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
|
1999-04-23 20:31:21 +08:00
|
|
|
./pablo/HDFIOTrace.h
|
|
|
|
./pablo/HDFTrace.h
|
|
|
|
./pablo/HDFmpioProtos.h
|
|
|
|
./pablo/HDFrecord_RT.h
|
1998-10-28 01:29:12 +08:00
|
|
|
./pablo/Makefile.in
|
1999-04-28 23:53:42 +08:00
|
|
|
./pablo/PabloHDF.c
|
2001-07-05 23:14:24 +08:00
|
|
|
./pablo/PabloHDF_MPIO.c
|
1998-10-28 01:29:12 +08:00
|
|
|
./pablo/PabloHDF_RT.c
|
|
|
|
./pablo/PabloHDF_SDDF.c
|
2000-08-31 03:36:20 +08:00
|
|
|
./pablo/PabloHDFff.f
|
1998-11-03 01:58:28 +08:00
|
|
|
./pablo/ProcIDs.h
|
1999-04-23 20:31:21 +08:00
|
|
|
./pablo/PabloSedscr
|
1999-03-13 02:35:04 +08:00
|
|
|
./pablo/ProcTrace.h
|
1999-04-29 01:15:26 +08:00
|
|
|
./pablo/READ_ME
|
1998-10-28 01:29:12 +08:00
|
|
|
|
2001-08-15 04:05:03 +08:00
|
|
|
./perform/Dependencies
|
2001-08-15 02:54:46 +08:00
|
|
|
./perform/Makefile.in
|
|
|
|
./perform/chunk.c
|
|
|
|
./perform/iopipe.c
|
|
|
|
./perform/mpi-perf.c
|
|
|
|
./perform/overhead.c
|
|
|
|
./perform/perf.c
|
2001-11-07 23:32:21 +08:00
|
|
|
./perform/pio_engine.c
|
|
|
|
./perform/pio_perf.c
|
|
|
|
./perform/pio_perf.h
|
|
|
|
./perform/pio_timer.c
|
|
|
|
./perform/pio_timer.h
|
2001-08-15 02:54:46 +08:00
|
|
|
|
2001-07-06 00:36:40 +08:00
|
|
|
./release_docs/INSTALL
|
|
|
|
./release_docs/INSTALL_TFLOPS
|
|
|
|
./release_docs/INSTALL_VFL
|
|
|
|
./release_docs/INSTALL_parallel
|
|
|
|
./release_docs/INSTALL_Windows.txt
|
2002-02-26 23:10:04 +08:00
|
|
|
./release_docs/INSTALL_Windows_withcpp.txt
|
2001-07-10 02:35:23 +08:00
|
|
|
./release_docs/INSTALL_codewarrior.txt
|
2001-07-06 00:36:40 +08:00
|
|
|
./release_docs/HISTORY.txt
|
|
|
|
./release_docs/RELEASE.txt
|
|
|
|
|
1998-09-08 21:38:29 +08:00
|
|
|
./src/.indent.pro _DO_NOT_DISTRIBUTE_
|
1999-11-03 22:30:40 +08:00
|
|
|
./src/Dependencies
|
1997-08-16 00:35:53 +08:00
|
|
|
./src/H5.c
|
1999-02-03 03:37:20 +08:00
|
|
|
./src/H5api_adpt.h
|
1998-04-24 06:23:43 +08:00
|
|
|
./src/H5A.c
|
|
|
|
./src/H5Aprivate.h
|
|
|
|
./src/H5Apublic.h
|
|
|
|
./src/H5Apkg.h
|
1997-08-16 00:35:53 +08:00
|
|
|
./src/H5AC.c
|
|
|
|
./src/H5ACprivate.h
|
|
|
|
./src/H5ACpublic.h
|
|
|
|
./src/H5B.c
|
|
|
|
./src/H5Bprivate.h
|
|
|
|
./src/H5Bpublic.h
|
|
|
|
./src/H5D.c
|
|
|
|
./src/H5Dprivate.h
|
|
|
|
./src/H5Dpublic.h
|
|
|
|
./src/H5E.c
|
|
|
|
./src/H5Eprivate.h
|
|
|
|
./src/H5Epublic.h
|
|
|
|
./src/H5F.c
|
1998-01-17 03:52:04 +08:00
|
|
|
./src/H5Farray.c
|
2000-09-29 03:12:43 +08:00
|
|
|
./src/H5Fcontig.c
|
1997-10-21 07:14:35 +08:00
|
|
|
./src/H5Fistore.c
|
2000-10-10 15:40:07 +08:00
|
|
|
./src/H5Fpkg.h
|
1998-02-17 05:26:59 +08:00
|
|
|
./src/H5Fprivate.h
|
|
|
|
./src/H5Fpublic.h
|
2000-10-10 15:40:07 +08:00
|
|
|
./src/H5Fseq.c
|
1999-08-11 04:21:32 +08:00
|
|
|
./src/H5FD.c
|
1999-08-18 03:12:59 +08:00
|
|
|
./src/H5FDcore.c
|
|
|
|
./src/H5FDcore.h
|
1999-08-11 04:21:32 +08:00
|
|
|
./src/H5FDfamily.c
|
|
|
|
./src/H5FDfamily.h
|
1999-08-31 13:06:01 +08:00
|
|
|
./src/H5FDgass.c
|
|
|
|
./src/H5FDgass.h
|
2000-05-12 22:59:07 +08:00
|
|
|
./src/H5FDlog.c
|
|
|
|
./src/H5FDlog.h
|
1999-08-11 04:21:32 +08:00
|
|
|
./src/H5FDmpio.c
|
|
|
|
./src/H5FDmpio.h
|
1999-08-18 03:12:59 +08:00
|
|
|
./src/H5FDmulti.c
|
|
|
|
./src/H5FDmulti.h
|
|
|
|
./src/H5FDprivate.h
|
|
|
|
./src/H5FDpublic.h
|
|
|
|
./src/H5FDsec2.c
|
|
|
|
./src/H5FDsec2.h
|
2000-04-14 00:13:30 +08:00
|
|
|
./src/H5FDsrb.c
|
|
|
|
./src/H5FDsrb.h
|
1999-10-27 03:34:29 +08:00
|
|
|
./src/H5FDstdio.c
|
|
|
|
./src/H5FDstdio.h
|
2000-09-17 00:55:24 +08:00
|
|
|
./src/H5FDstream.c
|
|
|
|
./src/H5FDstream.h
|
2000-04-05 05:00:31 +08:00
|
|
|
./src/H5FL.c
|
|
|
|
./src/H5FLprivate.h
|
1997-08-16 00:35:53 +08:00
|
|
|
./src/H5G.c
|
1997-09-22 10:08:01 +08:00
|
|
|
./src/H5Gent.c
|
1997-08-16 00:35:53 +08:00
|
|
|
./src/H5Gnode.c
|
1997-09-20 00:33:13 +08:00
|
|
|
./src/H5Gpkg.h
|
1997-08-16 00:35:53 +08:00
|
|
|
./src/H5Gprivate.h
|
|
|
|
./src/H5Gpublic.h
|
1997-09-22 10:08:01 +08:00
|
|
|
./src/H5Gstab.c
|
1998-03-31 03:24:08 +08:00
|
|
|
./src/H5HG.c
|
|
|
|
./src/H5HGprivate.h
|
|
|
|
./src/H5HGpublic.h
|
|
|
|
./src/H5HL.c
|
|
|
|
./src/H5HLprivate.h
|
|
|
|
./src/H5HLpublic.h
|
1998-03-18 06:46:27 +08:00
|
|
|
./src/H5I.c
|
|
|
|
./src/H5Iprivate.h
|
|
|
|
./src/H5Ipublic.h
|
1997-08-16 00:35:53 +08:00
|
|
|
./src/H5MF.c
|
|
|
|
./src/H5MFprivate.h
|
|
|
|
./src/H5MM.c
|
|
|
|
./src/H5MMprivate.h
|
|
|
|
./src/H5MMpublic.h
|
|
|
|
./src/H5O.c
|
1998-04-24 06:23:43 +08:00
|
|
|
./src/H5Oattr.c
|
1998-04-18 05:29:43 +08:00
|
|
|
./src/H5Ocomp.c
|
1997-08-16 00:35:53 +08:00
|
|
|
./src/H5Ocont.c
|
1997-12-12 05:34:05 +08:00
|
|
|
./src/H5Odtype.c
|
1997-12-11 06:38:07 +08:00
|
|
|
./src/H5Oefl.c
|
1998-10-02 02:56:51 +08:00
|
|
|
./src/H5Ofill.c
|
1998-01-17 03:52:04 +08:00
|
|
|
./src/H5Olayout.c
|
1998-07-30 00:43:59 +08:00
|
|
|
./src/H5Omtime.c
|
1997-08-16 00:35:53 +08:00
|
|
|
./src/H5Oname.c
|
|
|
|
./src/H5Onull.c
|
|
|
|
./src/H5Oprivate.h
|
|
|
|
./src/H5Opublic.h
|
1997-12-12 05:34:05 +08:00
|
|
|
./src/H5Osdspace.c
|
1998-04-03 11:29:38 +08:00
|
|
|
./src/H5Oshared.c
|
1997-09-11 03:58:12 +08:00
|
|
|
./src/H5Ostab.c
|
1997-08-16 00:35:53 +08:00
|
|
|
./src/H5P.c
|
2001-11-21 02:47:42 +08:00
|
|
|
./src/H5Ppkg.h
|
1997-08-16 00:35:53 +08:00
|
|
|
./src/H5Pprivate.h
|
|
|
|
./src/H5Ppublic.h
|
1998-10-08 05:03:47 +08:00
|
|
|
./src/H5R.c
|
|
|
|
./src/H5Rprivate.h
|
|
|
|
./src/H5Rpublic.h
|
1998-02-27 02:10:51 +08:00
|
|
|
./src/H5S.c
|
1998-07-07 04:58:42 +08:00
|
|
|
./src/H5Sall.c
|
|
|
|
./src/H5Shyper.c
|
1998-08-19 02:26:32 +08:00
|
|
|
./src/H5Smpio.c
|
1998-11-13 08:26:28 +08:00
|
|
|
./src/H5Snone.c
|
1998-07-07 04:58:42 +08:00
|
|
|
./src/H5Spoint.c
|
2000-10-10 15:40:07 +08:00
|
|
|
./src/H5Spkg.h
|
1998-02-27 02:10:51 +08:00
|
|
|
./src/H5Sprivate.h
|
|
|
|
./src/H5Spublic.h
|
1998-07-07 04:58:42 +08:00
|
|
|
./src/H5Sselect.c
|
1997-08-16 00:35:53 +08:00
|
|
|
./src/H5T.c
|
1998-06-13 01:31:06 +08:00
|
|
|
./src/H5Tbit.c
|
1998-01-15 03:42:59 +08:00
|
|
|
./src/H5Tconv.c
|
1997-12-11 06:38:07 +08:00
|
|
|
./src/H5Tpkg.h
|
1997-08-16 00:35:53 +08:00
|
|
|
./src/H5Tprivate.h
|
|
|
|
./src/H5Tpublic.h
|
1999-06-05 06:23:42 +08:00
|
|
|
./src/H5Tvlen.c
|
2000-05-12 22:59:07 +08:00
|
|
|
./src/H5TB.c
|
|
|
|
./src/H5TBprivate.h
|
2000-05-19 22:52:03 +08:00
|
|
|
./src/H5TS.c
|
|
|
|
./src/H5TSprivate.h
|
1997-10-21 07:14:35 +08:00
|
|
|
./src/H5V.c
|
|
|
|
./src/H5Vprivate.h
|
1998-04-18 05:29:43 +08:00
|
|
|
./src/H5Z.c
|
1999-08-31 03:59:37 +08:00
|
|
|
./src/H5Zdeflate.c
|
1998-04-18 05:29:43 +08:00
|
|
|
./src/H5Zprivate.h
|
|
|
|
./src/H5Zpublic.h
|
1998-02-17 05:26:59 +08:00
|
|
|
./src/H5config.h.in
|
|
|
|
./src/H5detect.c
|
|
|
|
./src/H5private.h
|
|
|
|
./src/H5public.h
|
1997-08-16 00:35:53 +08:00
|
|
|
./src/Makefile.in
|
1998-02-17 05:26:59 +08:00
|
|
|
./src/hdf5.h
|
[svn-r1315] Changes since 19990607
----------------------
./configure.in
./configure [REGENERATED]
./src/libhdf5.settings.in [NEW]
./config/conclude.in
./INSTALL
./MANIFEST
A file called `libhdf5.settings' is installed along with the
libraries and it contains a list of various things that might
be of interest to someone using the library (such as what
compiler/options were used and what other libraries might need
to be linked to satisfy external references). We can add more
things as it becomes necessary. Here's a sample...
SUMMARY OF THE HDF5 CONFIGURATION
=================================
HDF5 Version: hdf5-1.1.106
Configured on: Tue Jun 8 11:38:52 EDT 1999
Configured by: matzke@llnl.gov at Spizella Software
Configure mode: development
Host system: i686-pc-linux-gnulibc1
Byte sex: little-endian
Libraries: static, shared
Parallel support: mpicc
Installation point: /usr/local
Compiler: mpicc (egcs-2.91.66)
Compiler switches: -Wall -g
Extra libraries: -lmfhdf -ldf -lz -ljpeg -lm
Archiver: ar
Ranlib: ranlib
Debugged Packages: d,e,f,g,hg,i,mm,o,p,s,v,z
API Tracing: yes
File addresses: large
1999-06-09 00:14:10 +08:00
|
|
|
./src/libhdf5.settings.in
|
1998-09-08 21:38:29 +08:00
|
|
|
|
1999-11-03 22:30:40 +08:00
|
|
|
./test/Dependencies
|
1997-08-16 00:35:53 +08:00
|
|
|
./test/Makefile.in
|
[svn-r339] Changes since 19980408
----------------------
./src/H5Osdspace.c
./html/H5.format.html
In the past we were allowed to have >2GB files on a 32-bit
machine as long as no dataset within the file was larger than
4GB (or whatever sizeof(size_t) is). That's been fixed now.
All dataset size calculations are done with `hsize_t' which is
normally defined as `unsigned long long'.
./src/H5F.c
./src/H5Ffamily.c
./src/H5Fprivate.h
./src/H5P.c
./src/H5Ppublic.h
The file family member size can now be set/queried. The
default is still 64MB, but it can be set to 1GB by saying:
H5Pset_family (plist, 30, H5P_DEFAULT);
When opening an existing file family the specified
bits-per-member is ignored and the first member of the family
determines the bits-per-member, which can be retrieved with
H5Pget_family().
./acconfig.h
./configure.in
./src/H5config.h
./src/H5public.h
Added `--disable-hsizet' so that those with old GCC compilers
(<2.8.1) can still compile the code.
./src/H5.c
./src/H5private.h
Added HDfprintf() which works just like fprintf() except you
can give `H' as a size modifier for the integer conversions
and supply an `hsize_t' or `hssize_t' argument without casting
it. For instance:
hsize_t npoints = H5Sget_npoints(space);
HDfprintf(stdout,"Dataset has %Hd (%#018Hx) points\n",
npoints, npoints);
You can now give `%a' as a format to print an address, but all
formating flags are ignored and it causes the return value of
HDfprintf() to not include the characters in the address (but
who uses the return value anyway :-). Example:
H5G_t *grp;
HDfprintf(stdout, "Group object header at %a\n",
&(grp->ent.header));
Added HDstrtoll() which works exactly like [HD]strtol() except
the result is an int64.
./src/debug.c
Large addresses can now be entered from the command-line. Use
either decimal, octal (leading `0') or hexadecimal (leading
`0x') when giving the address.
./src/h5ls.c
The printf format for dataset dimensions was changed to `%Hu'
to support large datasets.
./test/big.c [NEW]
A test for big datasets on 32-bit machines. This test is not
run by default. Don't try to run it on an nfs-mounted file
system or other file system that doesn't support holes because
it creates two 32GB datasets of all zero.
1998-04-10 04:22:11 +08:00
|
|
|
./test/big.c
|
1998-06-17 03:38:26 +08:00
|
|
|
./test/bittests.c
|
1998-01-24 03:53:37 +08:00
|
|
|
./test/cmpd_dset.c
|
1997-12-11 06:38:07 +08:00
|
|
|
./test/dsets.c
|
|
|
|
./test/dtypes.c
|
1999-01-07 19:37:16 +08:00
|
|
|
./test/enum.c
|
1998-01-31 07:32:28 +08:00
|
|
|
./test/extend.c
|
1998-03-05 00:20:23 +08:00
|
|
|
./test/external.c
|
2002-04-12 20:55:21 +08:00
|
|
|
./test/fill_old.h5
|
1998-10-06 05:01:10 +08:00
|
|
|
./test/fillval.c
|
1998-10-26 22:49:52 +08:00
|
|
|
./test/flush1.c
|
|
|
|
./test/flush2.c
|
1999-08-31 13:06:01 +08:00
|
|
|
./test/gass_append.c
|
|
|
|
./test/gass_read.c
|
|
|
|
./test/gass_write.c
|
2002-04-17 22:38:21 +08:00
|
|
|
./test/getname.c
|
1998-04-03 11:29:38 +08:00
|
|
|
./test/gheap.c
|
1998-11-21 11:36:51 +08:00
|
|
|
./test/h5test.c
|
|
|
|
./test/h5test.h
|
1997-10-21 07:14:35 +08:00
|
|
|
./test/hyperslab.c
|
|
|
|
./test/istore.c
|
1998-11-25 22:58:22 +08:00
|
|
|
./test/lheap.c
|
1998-04-15 00:44:46 +08:00
|
|
|
./test/links.c
|
1998-10-15 03:35:08 +08:00
|
|
|
./test/mount.c
|
1998-07-31 00:38:21 +08:00
|
|
|
./test/mtime.c
|
1998-11-25 23:54:11 +08:00
|
|
|
./test/ohdr.c
|
1998-10-27 03:55:54 +08:00
|
|
|
./test/space_overflow.c _DO_NOT_DISTRIBUTE_
|
2000-11-10 05:45:27 +08:00
|
|
|
./test/gen_old_array.c _DO_NOT_DISTRIBUTE_
|
|
|
|
./test/gen_new_array.c _DO_NOT_DISTRIBUTE_
|
2002-04-12 20:55:21 +08:00
|
|
|
./test/gen_new_fill.c _DO_NOT_DISTRIBUTE_
|
2002-04-10 21:33:41 +08:00
|
|
|
./test/set_extent.c
|
2000-04-14 00:13:30 +08:00
|
|
|
./test/srb_append.c
|
|
|
|
./test/srb_read.c
|
|
|
|
./test/srb_write.c
|
1998-11-25 22:58:22 +08:00
|
|
|
./test/stab.c
|
2000-09-17 00:55:24 +08:00
|
|
|
./test/stream_test.c
|
2000-11-10 05:45:27 +08:00
|
|
|
./test/tarray.c
|
|
|
|
./test/tarrold.h5
|
2000-05-23 06:55:33 +08:00
|
|
|
./test/tattr.c
|
2001-09-26 13:39:48 +08:00
|
|
|
./test/tconfig.c
|
1997-08-16 00:35:53 +08:00
|
|
|
./test/testhdf5.c
|
|
|
|
./test/testhdf5.h
|
2001-07-31 04:02:48 +08:00
|
|
|
./test/testmeta.c
|
1997-08-16 00:35:53 +08:00
|
|
|
./test/tfile.c
|
2000-11-12 08:08:59 +08:00
|
|
|
./test/tgenprop.c
|
1998-02-27 02:10:51 +08:00
|
|
|
./test/th5s.c
|
1998-10-27 03:55:54 +08:00
|
|
|
./test/th5s.h5
|
2000-04-06 04:51:10 +08:00
|
|
|
./test/titerate.c
|
1997-08-16 00:35:53 +08:00
|
|
|
./test/tmeta.c
|
2002-01-25 22:54:58 +08:00
|
|
|
./test/tmisc.c
|
2000-10-20 00:42:33 +08:00
|
|
|
./test/ttime.c
|
1998-10-14 05:27:53 +08:00
|
|
|
./test/trefer.c
|
1998-07-15 13:42:11 +08:00
|
|
|
./test/tselect.c
|
2000-05-23 06:55:33 +08:00
|
|
|
./test/ttbbt.c
|
|
|
|
./test/ttsafe.c
|
|
|
|
./test/ttsafe.h
|
|
|
|
./test/ttsafe_acreate.c
|
|
|
|
./test/ttsafe_cancel.c
|
|
|
|
./test/ttsafe_dcreate.c
|
|
|
|
./test/ttsafe_error.c
|
1999-10-07 00:38:04 +08:00
|
|
|
./test/tvlstr.c
|
1999-06-12 06:03:53 +08:00
|
|
|
./test/tvltypes.c
|
1998-09-28 22:20:21 +08:00
|
|
|
./test/unlink.c
|
1998-09-08 21:38:29 +08:00
|
|
|
|
1999-11-03 22:30:40 +08:00
|
|
|
./testpar/Dependencies
|
1998-11-13 23:06:06 +08:00
|
|
|
./testpar/Makefile.in
|
1998-07-03 09:16:22 +08:00
|
|
|
./testpar/t_dset.c
|
|
|
|
./testpar/t_file.c
|
1999-12-17 22:35:54 +08:00
|
|
|
./testpar/t_mdset.c
|
1999-02-17 12:39:22 +08:00
|
|
|
./testpar/t_mpi.c
|
1998-02-18 04:31:44 +08:00
|
|
|
./testpar/testphdf5.c
|
1998-07-03 09:16:22 +08:00
|
|
|
./testpar/testphdf5.h
|
1998-09-08 21:38:29 +08:00
|
|
|
|
1999-11-03 22:30:40 +08:00
|
|
|
./tools/Dependencies
|
1998-07-13 23:35:21 +08:00
|
|
|
./tools/Makefile.in
|
2001-02-23 06:09:28 +08:00
|
|
|
|
2001-05-13 01:55:47 +08:00
|
|
|
./tools/gifconv/Dependencies
|
|
|
|
./tools/gifconv/Makefile.in
|
|
|
|
./tools/gifconv/decompress.c
|
2001-05-13 03:12:25 +08:00
|
|
|
./tools/gifconv/gif.h
|
2001-05-13 01:55:47 +08:00
|
|
|
./tools/gifconv/gif2hdf.c
|
|
|
|
./tools/gifconv/gif2mem.c
|
|
|
|
./tools/gifconv/gifread.c
|
|
|
|
./tools/gifconv/hdf2gif.c
|
|
|
|
./tools/gifconv/hdfgifwr.c
|
|
|
|
./tools/gifconv/readhdf.c
|
|
|
|
./tools/gifconv/writehdf.c
|
|
|
|
|
|
|
|
|
2001-02-23 06:09:28 +08:00
|
|
|
./tools/h5dump/Dependencies
|
|
|
|
./tools/h5dump/Makefile.in
|
|
|
|
./tools/h5dump/h5dump.c
|
|
|
|
./tools/h5dump/h5dump.h
|
|
|
|
./tools/h5dump/h5dumptst.c
|
|
|
|
./tools/h5dump/testh5dump.sh
|
|
|
|
|
|
|
|
./tools/h5ls/Dependencies
|
|
|
|
./tools/h5ls/Makefile.in
|
|
|
|
./tools/h5ls/h5ls.c
|
|
|
|
./tools/h5ls/testh5ls.sh
|
|
|
|
|
|
|
|
./tools/lib/Dependencies
|
|
|
|
./tools/lib/Makefile.in
|
|
|
|
./tools/lib/h5tools.c
|
|
|
|
./tools/lib/h5tools.h
|
|
|
|
./tools/lib/h5tools_str.c
|
|
|
|
./tools/lib/h5tools_str.h
|
2001-03-10 00:47:46 +08:00
|
|
|
./tools/lib/h5tools_utils.c
|
|
|
|
./tools/lib/h5tools_utils.h
|
2001-02-24 06:23:43 +08:00
|
|
|
./tools/lib/talign.c
|
2001-02-23 06:09:28 +08:00
|
|
|
|
|
|
|
./tools/misc/Dependencies
|
|
|
|
./tools/misc/Makefile.in
|
|
|
|
./tools/misc/h5debug.c
|
|
|
|
./tools/misc/h5import.c
|
|
|
|
./tools/misc/h5repart.c
|
|
|
|
./tools/misc/pdb2hdf.c
|
2001-08-12 21:30:20 +08:00
|
|
|
./tools/misc/h5cc.in
|
1998-09-10 01:31:19 +08:00
|
|
|
|
1998-10-01 02:50:49 +08:00
|
|
|
./tools/testfiles/tall-1.ddl
|
|
|
|
./tools/testfiles/tall-2.ddl
|
|
|
|
./tools/testfiles/tall-3.ddl
|
2001-04-25 07:10:15 +08:00
|
|
|
./tools/testfiles/tall-4s.ddl
|
|
|
|
./tools/testfiles/tall-5s.ddl
|
1998-09-10 01:31:19 +08:00
|
|
|
./tools/testfiles/tall.h5
|
2000-11-22 05:56:05 +08:00
|
|
|
./tools/testfiles/tarray1.ddl
|
|
|
|
./tools/testfiles/tarray1.h5
|
|
|
|
./tools/testfiles/tarray1.ls
|
|
|
|
./tools/testfiles/tarray2.ddl
|
|
|
|
./tools/testfiles/tarray2.h5
|
|
|
|
./tools/testfiles/tarray3.ddl
|
|
|
|
./tools/testfiles/tarray3.h5
|
|
|
|
./tools/testfiles/tarray4.ddl
|
|
|
|
./tools/testfiles/tarray4.h5
|
2000-12-02 23:11:16 +08:00
|
|
|
./tools/testfiles/tarray5.ddl
|
2000-11-22 05:56:05 +08:00
|
|
|
./tools/testfiles/tarray5.h5
|
|
|
|
./tools/testfiles/tarray6.ddl
|
|
|
|
./tools/testfiles/tarray6.h5
|
|
|
|
./tools/testfiles/tarray7.ddl
|
|
|
|
./tools/testfiles/tarray7.h5
|
1998-10-01 02:50:49 +08:00
|
|
|
./tools/testfiles/tattr-1.ddl
|
|
|
|
./tools/testfiles/tattr-2.ddl
|
|
|
|
./tools/testfiles/tattr-3.ddl
|
1998-09-10 01:31:19 +08:00
|
|
|
./tools/testfiles/tattr.h5
|
2000-06-01 00:23:52 +08:00
|
|
|
./tools/testfiles/tbitfields-1.ddl
|
|
|
|
./tools/testfiles/tbitfields.h5
|
1998-10-29 14:39:43 +08:00
|
|
|
./tools/testfiles/tcomp-1.ddl
|
|
|
|
./tools/testfiles/tcomp-2.ddl
|
|
|
|
./tools/testfiles/tcomp-3.ddl
|
|
|
|
./tools/testfiles/tcompound.h5
|
1998-12-15 00:19:21 +08:00
|
|
|
./tools/testfiles/tcompound2.h5
|
1999-07-06 22:31:20 +08:00
|
|
|
./tools/testfiles/tdatareg.h5
|
|
|
|
./tools/testfiles/tdatareg.ddl
|
1998-10-01 02:50:49 +08:00
|
|
|
./tools/testfiles/tdset-1.ddl
|
|
|
|
./tools/testfiles/tdset-2.ddl
|
2001-04-25 07:10:15 +08:00
|
|
|
./tools/testfiles/tdset-3s.ddl
|
1998-09-10 01:31:19 +08:00
|
|
|
./tools/testfiles/tdset.h5
|
2001-04-25 07:10:15 +08:00
|
|
|
./tools/testfiles/tdset2-1s.ddl
|
1998-12-15 00:19:21 +08:00
|
|
|
./tools/testfiles/tdset2.h5
|
2001-01-04 22:16:24 +08:00
|
|
|
./tools/testfiles/tempty.ddl
|
|
|
|
./tools/testfiles/tempty.h5
|
|
|
|
./tools/testfiles/tempty.ls
|
1999-07-06 22:31:20 +08:00
|
|
|
./tools/testfiles/tenum.h5
|
|
|
|
./tools/testfiles/tenum.ddl
|
2002-02-26 06:40:32 +08:00
|
|
|
./tools/testfiles/tfamily.ddl
|
|
|
|
./tools/testfiles/tfamily00000.h5
|
|
|
|
./tools/testfiles/tfamily00001.h5
|
|
|
|
./tools/testfiles/tfamily00002.h5
|
|
|
|
./tools/testfiles/tfamily00003.h5
|
|
|
|
./tools/testfiles/tfamily00004.h5
|
|
|
|
./tools/testfiles/tfamily00005.h5
|
|
|
|
./tools/testfiles/tfamily00006.h5
|
|
|
|
./tools/testfiles/tfamily00007.h5
|
|
|
|
./tools/testfiles/tfamily00008.h5
|
|
|
|
./tools/testfiles/tfamily00009.h5
|
|
|
|
./tools/testfiles/tfamily00010.h5
|
1998-10-01 02:50:49 +08:00
|
|
|
./tools/testfiles/tgroup-1.ddl
|
|
|
|
./tools/testfiles/tgroup-2.ddl
|
1998-09-10 01:31:19 +08:00
|
|
|
./tools/testfiles/tgroup.h5
|
2002-01-06 00:33:50 +08:00
|
|
|
./tools/testfiles/tgrp_comments.ddl
|
|
|
|
./tools/testfiles/tgrp_comments.h5
|
1998-10-29 14:39:43 +08:00
|
|
|
./tools/testfiles/thlink-1.ddl
|
|
|
|
./tools/testfiles/thlink-2.ddl
|
|
|
|
./tools/testfiles/thlink-3.ddl
|
|
|
|
./tools/testfiles/thlink-4.ddl
|
|
|
|
./tools/testfiles/thlink-5.ddl
|
|
|
|
./tools/testfiles/thlink.h5
|
2002-03-01 01:25:40 +08:00
|
|
|
./tools/testfiles/tlarge_objname.ddl
|
|
|
|
./tools/testfiles/tlarge_objname.h5
|
1998-12-22 06:49:13 +08:00
|
|
|
./tools/testfiles/tloop-1.ddl
|
1999-01-07 05:58:34 +08:00
|
|
|
./tools/testfiles/tloop.h5
|
|
|
|
./tools/testfiles/tloop2.h5
|
|
|
|
./tools/testfiles/tmany.h5
|
2002-02-26 07:06:26 +08:00
|
|
|
./tools/testfiles/tmulti-b.h5
|
|
|
|
./tools/testfiles/tmulti.ddl
|
|
|
|
./tools/testfiles/tmulti-g.h5
|
|
|
|
./tools/testfiles/tmulti-l.h5
|
|
|
|
./tools/testfiles/tmulti-o.h5
|
|
|
|
./tools/testfiles/tmulti-r.h5
|
|
|
|
./tools/testfiles/tmulti-s.h5
|
2000-03-22 01:51:03 +08:00
|
|
|
./tools/testfiles/tnestcomp-1.ddl
|
|
|
|
./tools/testfiles/tnestedcomp.h5
|
1999-07-06 22:31:20 +08:00
|
|
|
./tools/testfiles/tobjref.h5
|
|
|
|
./tools/testfiles/tobjref.ddl
|
2000-05-05 01:10:34 +08:00
|
|
|
./tools/testfiles/topaque.h5
|
|
|
|
./tools/testfiles/topaque.ddl
|
2000-10-25 06:09:46 +08:00
|
|
|
./tools/testfiles/tsaf.ddl
|
|
|
|
./tools/testfiles/tsaf.h5
|
1998-10-01 02:50:49 +08:00
|
|
|
./tools/testfiles/tslink-1.ddl
|
|
|
|
./tools/testfiles/tslink-2.ddl
|
1998-09-10 01:31:19 +08:00
|
|
|
./tools/testfiles/tslink.h5
|
2002-02-26 06:40:32 +08:00
|
|
|
./tools/testfiles/tsplit_file-m.h5
|
|
|
|
./tools/testfiles/tsplit_file-r.h5
|
|
|
|
./tools/testfiles/tsplit_file.ddl
|
1999-02-01 16:59:55 +08:00
|
|
|
./tools/testfiles/tstr-1.ddl
|
|
|
|
./tools/testfiles/tstr.h5
|
1999-02-03 03:37:20 +08:00
|
|
|
./tools/testfiles/tstr2.h5
|
2000-11-22 05:56:05 +08:00
|
|
|
./tools/testfiles/tstr-2.ddl
|
|
|
|
./tools/testfiles/tvldtypes1.ddl
|
|
|
|
./tools/testfiles/tvldtypes1.h5
|
|
|
|
./tools/testfiles/tvldtypes1.ls
|
|
|
|
./tools/testfiles/tvldtypes2.ddl
|
|
|
|
./tools/testfiles/tvldtypes2.h5
|
|
|
|
./tools/testfiles/tvldtypes3.ddl
|
|
|
|
./tools/testfiles/tvldtypes3.h5
|
|
|
|
./tools/testfiles/tvldtypes4.ddl
|
|
|
|
./tools/testfiles/tvldtypes4.h5
|
1999-06-14 08:47:43 +08:00
|
|
|
|
2000-11-01 00:18:33 +08:00
|
|
|
# Expected output from h5ls tests
|
|
|
|
./tools/testfiles/help-1.ls
|
|
|
|
./tools/testfiles/help-2.ls
|
|
|
|
./tools/testfiles/help-3.ls
|
|
|
|
./tools/testfiles/tall-1.ls
|
|
|
|
./tools/testfiles/tall-2.ls
|
|
|
|
./tools/testfiles/tcomp-1.ls
|
|
|
|
./tools/testfiles/tdset-1.ls
|
|
|
|
./tools/testfiles/tgroup-1.ls
|
|
|
|
./tools/testfiles/tgroup.ls
|
|
|
|
./tools/testfiles/thlink-1.ls
|
|
|
|
./tools/testfiles/tloop-1.ls
|
|
|
|
./tools/testfiles/tnestcomp-1.ls
|
|
|
|
./tools/testfiles/tsaf.ls
|
|
|
|
./tools/testfiles/tslink-1.ls
|
|
|
|
./tools/testfiles/tstr-1.ls
|
|
|
|
|
2001-02-15 04:48:22 +08:00
|
|
|
#additional test input and output for h5dump XML
|
|
|
|
./tools/testfiles/tall.h5.xml
|
|
|
|
./tools/testfiles/tarray1.h5.xml
|
|
|
|
./tools/testfiles/tarray2.h5.xml
|
|
|
|
./tools/testfiles/tarray3.h5.xml
|
|
|
|
./tools/testfiles/tarray6.h5.xml
|
|
|
|
./tools/testfiles/tarray7.h5.xml
|
|
|
|
./tools/testfiles/tattr.h5.xml
|
|
|
|
./tools/testfiles/tbitfields.h5.xml
|
|
|
|
./tools/testfiles/tcompound.h5.xml
|
|
|
|
./tools/testfiles/tcompound2.h5.xml
|
|
|
|
./tools/testfiles/tdatareg.h5.xml
|
|
|
|
./tools/testfiles/tdset.h5.xml
|
|
|
|
./tools/testfiles/tdset2.h5.xml
|
|
|
|
./tools/testfiles/tempty.h5.xml
|
|
|
|
./tools/testfiles/tenum.h5.xml
|
|
|
|
./tools/testfiles/tgroup.h5.xml
|
|
|
|
./tools/testfiles/thlink.h5.xml
|
|
|
|
./tools/testfiles/tloop.h5.xml
|
|
|
|
./tools/testfiles/tloop2.h5.xml
|
|
|
|
./tools/testfiles/tmany.h5.xml
|
|
|
|
./tools/testfiles/tname-amp.h5
|
|
|
|
./tools/testfiles/tname-amp.h5.xml
|
|
|
|
./tools/testfiles/tname-apos.h5
|
|
|
|
./tools/testfiles/tname-apos.h5.xml
|
|
|
|
./tools/testfiles/tname-gt.h5
|
|
|
|
./tools/testfiles/tname-gt.h5.xml
|
|
|
|
./tools/testfiles/tname-lt.h5
|
|
|
|
./tools/testfiles/tname-lt.h5.xml
|
|
|
|
./tools/testfiles/tname-quot.h5
|
|
|
|
./tools/testfiles/tname-quot.h5.xml
|
|
|
|
./tools/testfiles/tname-sp.h5
|
|
|
|
./tools/testfiles/tname-sp.h5.xml
|
|
|
|
./tools/testfiles/tnestedcomp.h5.xml
|
|
|
|
./tools/testfiles/tnodata.h5
|
|
|
|
./tools/testfiles/tnodata.h5.xml
|
|
|
|
./tools/testfiles/tobjref.h5.xml
|
|
|
|
./tools/testfiles/topaque.h5.xml
|
|
|
|
./tools/testfiles/tref-escapes-at.h5
|
|
|
|
./tools/testfiles/tref-escapes-at.h5.xml
|
|
|
|
./tools/testfiles/tref-escapes.h5
|
|
|
|
./tools/testfiles/tref-escapes.h5.xml
|
|
|
|
./tools/testfiles/tref.h5
|
|
|
|
./tools/testfiles/tref.h5.xml
|
|
|
|
./tools/testfiles/tsaf.h5.xml
|
|
|
|
./tools/testfiles/tslink.h5.xml
|
|
|
|
./tools/testfiles/tstr.h5.xml
|
|
|
|
./tools/testfiles/tstr2.h5.xml
|
|
|
|
./tools/testfiles/tstring-at.h5
|
|
|
|
./tools/testfiles/tstring-at.h5.xml
|
|
|
|
./tools/testfiles/tstring.h5
|
|
|
|
./tools/testfiles/tstring.h5.xml
|
|
|
|
./tools/testfiles/tvldtypes1.h5.xml
|
|
|
|
./tools/testfiles/tvldtypes2.h5.xml
|
|
|
|
./tools/testfiles/tvldtypes3.h5.xml
|
2001-07-06 00:36:40 +08:00
|
|
|
|
|
|
|
./windows/all.zip
|
|
|
|
./windows/all_withf90.zip
|