diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-07-08 18:41:04 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-07-08 18:41:04 (GMT) |
commit | 768b7465a19afcbc87ba54a7b6400492d54c2626 (patch) | |
tree | 67d1e32adcfdbf0905189ff3ca1d60c2c40a6b1a /doc | |
parent | 1ce18a997166808519476b505f5bb0c4f34e1ea0 (diff) | |
download | hdf5-768b7465a19afcbc87ba54a7b6400492d54c2626.zip hdf5-768b7465a19afcbc87ba54a7b6400492d54c2626.tar.gz hdf5-768b7465a19afcbc87ba54a7b6400492d54c2626.tar.bz2 |
[svn-r471] Changes since 19980708
----------------------
./MANIFEST
Alphabetized. `d' comes before `e' :-)
./bin/release
Added the `-batch' option which causes the script to not ask
questions and to automatically update the minor version
number and set the patch level back to `a'. This is intended
to be used for the daily snapshots:
#! /bin/sh
set -e
cd ~/hdf5
make distclean
make test
bin/release -batch tar compress gzip bzip2
mv ./releases/* /repository
./src/H5Z.c
Removed warnings about unused variables when the zlib.h header
file is present but libz.a isn't.
./INSTALL
./configure.in
./doc/html/tracing.html
Made API tracing the default (you still need to define the
HDF5_TRACE environment variable to get results) and change the
name from `--disable-tracing' to `--disable-trace' to make it
consistent with the other switches.
Changed `site config file' to `host config file' to match the
documentation.
./doc/html/H5.user.html
Added a reference to the `tracing.html' file.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/html/H5.user.html | 4 | ||||
-rw-r--r-- | doc/html/tracing.html | 9 |
2 files changed, 8 insertions, 5 deletions
diff --git a/doc/html/H5.user.html b/doc/html/H5.user.html index 3c16553..dc1232a 100644 --- a/doc/html/H5.user.html +++ b/doc/html/H5.user.html @@ -30,6 +30,8 @@ A guide to the H5E interface. <li><a href="Caching.html">Caching</a> - A guide for meta and raw data caching. + <li><a href="tracing.html">API Tracing</a> - + A guide to debugging HDF5 API calls. </ul> <p>The following documents form a loosely organized developer's guide to @@ -64,7 +66,7 @@ <address><a href="mailto:koziol@ncsa.uiuc.edu">Quincey Koziol</a></address> <address><a href="mailto:matzke@llnl.gov">Robb Matzke</a></address> <!-- hhmts start --> -Last modified: Tue May 26 15:39:47 EDT 1998 +Last modified: Wed Jul 8 14:10:50 EDT 1998 <!-- hhmts end --> </body> diff --git a/doc/html/tracing.html b/doc/html/tracing.html index 18ef556..8d3c677 100644 --- a/doc/html/tracing.html +++ b/doc/html/tracing.html @@ -48,8 +48,9 @@ HDF5-DIAG: Error detected in thread 0. Back trace follows. <p>This all happens with some magic in the configuration script, the makefiles, and macros. First, from the end-user point of view, the library must be configured with the - <code>--enable-tracing</code> switch. This causes the library to - include the support necessary for API tracing. + <code>--enable-trace</code> switch (the default; + `--disable-trace' is the alternative). This causes the library + to include the support necessary for API tracing. <p> <center> @@ -59,7 +60,7 @@ HDF5-DIAG: Error detected in thread 0. Back trace follows. <td> <code><pre> $ make distclean -$ sh configure --enable-tracing +$ sh configure --enable-trace $ make </pre></code> </td> @@ -186,7 +187,7 @@ H5E.c:336: warning: trace info was not inserted <address><a href="mailto:matzke@llnl.gov">Robb Matzke</a></address> <!-- Created: Wed Jun 17 12:29:12 EDT 1998 --> <!-- hhmts start --> -Last modified: Wed Jun 17 15:45:50 EDT 1998 +Last modified: Wed Jul 8 14:07:23 EDT 1998 <!-- hhmts end --> </body> </html> |