diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2009-04-08 17:05:17 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2009-04-08 17:05:17 (GMT) |
commit | 48b127f628725a89a79dbaa95a784501383d6259 (patch) | |
tree | 87760c19fdc4e14403de440accc745ce5ee14b3d /src/H5I.c | |
parent | 428a7c52435721d6a9e89ccdc4c1e8fe4060864a (diff) | |
download | hdf5-48b127f628725a89a79dbaa95a784501383d6259.zip hdf5-48b127f628725a89a79dbaa95a784501383d6259.tar.gz hdf5-48b127f628725a89a79dbaa95a784501383d6259.tar.bz2 |
[svn-r16699] Purpose: Fix bug 503
Description:
Changed Skip list package to use a deterministic skip list. This allows the
skip list package to avoid calling rand() and srand(), even on machines without
rand_r(). There is no longer a p-value or maximum level for skip lists.
Tested: jam, smirom, linew (h5committest)
Diffstat (limited to 'src/H5I.c')
-rw-r--r-- | src/H5I.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1847,7 +1847,7 @@ done: /*------------------------------------------------------------------------- * Function: H5Iis_valid * - * Purpose: Check if the given id is valid. And id is valid if it is in + * Purpose: Check if the given id is valid. An id is valid if it is in * use and has an application reference count of at least 1. * * Return: Success: TRUE if the id is valid, FALSE otherwise. |