Leon Arber 840bcbe9ef [svn-r12019] Purpose:
Bug fix/Feature

Description:
Modify the library to use rand_r, when available, instead of srand.  If
rand_r is not available, it will try to use srandom/random, and then finally
fall back to srand/rand.

Solution:
A couple places in the library use the srand() function to seed the random
number generator.  This can cause problems on certain platforms and could theoretically
cause problems for users who expect a certain sequence of random numbers following their
own call to srand().

Most platforms have an implementation of rand_r, which is identical to rand, except that
it allows for explicit storage of the seed value.  The configure script will now check
for the existence of rand_r to facilitate its use in the library.

Two new functions are added, to replace the macros HDsrand/HDrand.  These functions are HDrand and
HDsrand.  HDrand will call rand_r, if available, or random(), if available, and fall back to rand() if neither
of those is available.  HDsrand will store the seed value locally, if rand_r is available.  Otherwise, it will call
srandom if available, and fall back to srand otherwise.


Platforms tested:
heping, mir.  Really need to test on Red Storm, since that platform motivated this fix, but the machine
is currently not available.

Misc. update:
2006-03-06 23:23:24 -05:00
2006-02-28 13:11:10 -05:00
2006-02-15 15:37:00 -05:00
2006-02-21 17:13:11 -05:00
2005-12-09 15:59:11 -05:00
2006-03-06 12:05:31 -05:00
2006-01-27 10:32:04 -05:00
2006-02-28 14:12:05 -05:00
2006-03-06 23:23:24 -05:00
2006-03-06 23:23:24 -05:00
2006-03-01 00:54:07 -05:00
2006-03-04 17:56:44 -05:00
2006-03-02 10:18:23 -05:00
2005-10-29 11:10:23 -05:00
2005-11-02 14:27:12 -05:00
2005-03-07 12:57:27 -05:00
2005-03-10 15:52:34 -05:00
2006-03-06 23:23:24 -05:00
2006-03-06 23:23:24 -05:00
2005-01-10 17:32:36 -05:00
2006-03-03 16:49:10 -05:00
2005-10-11 16:13:42 -05:00
2006-03-03 16:49:10 -05:00
2006-03-06 11:11:11 -05:00

HDF5 version 1.7.58 currently under development
Please refer to the release_docs/INSTALL file for installation instructions.
------------------------------------------------------------------------------

This release is almost fully functional for the entire API defined in the
documentation, see the RELEASE.txt file in this directory for information
specific to this release of the library.  The INSTALL file contains
instructions on compiling and installing the library.  The INSTALL_parallel
file contains instructions on installing the parallel version of the
library.  The INSTALL* files can be found in the release_docs/ directory.

Documentation for this release is in the html directory.  Start with the
"index.html" in that directory.

Four mailing lists are currently set up for use with the HDF5
library.

   hdf5         - For general discussion of the HDF5 library with
		  other users.

   hdf5dev      - For discussion of the HDF5 library development
		  with developers and other interested parties.

   hdf5announce - For announcements of HDF5 related developments,
		  not a discussion list.

   hdf5cvs      - For checkin notices of code development on the library,
		  not a discussion list.

To subscribe to a list, send mail to "majordomo@ncsa.uiuc.edu",
with "subscribe <list>" in the _body_, not the Subject, of the message.
E.g., subscribe hdf5 

Messages to be sent to the list should be sent to "<list>@ncsa.uiuc.edu".

Nearly daily code snapshots are now being provided at the following URL:
    ftp://hdf.ncsa.uiuc.edu/pub/outgoing/hdf5/snapshots
Please read the readme file in that directory before working with a library
snapshot.

The HDF5 website is located at http://hdf.ncsa.uiuc.edu/HDF5/

Bugs should be reported to hdfhelp@ncsa.uiuc.edu.
Description
No description provided
Readme 616 MiB
Languages
C 81.7%
Fortran 4.5%
Java 4%
CMake 3.3%
C++ 2.4%
Other 4%