summaryrefslogtreecommitdiffstats
path: root/src/H5SL.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-03-16 18:43:26 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-03-16 18:43:26 (GMT)
commit357dc7ee9969b74bf1701ae5111004cd8283f2b7 (patch)
tree55cf95b821c127b992f88fae6f3c9d5462c2f919 /src/H5SL.c
parentb0bf1e8c5292ec21aea9f8232766ce09979d17a0 (diff)
downloadhdf5-357dc7ee9969b74bf1701ae5111004cd8283f2b7.zip
hdf5-357dc7ee9969b74bf1701ae5111004cd8283f2b7.tar.gz
hdf5-357dc7ee9969b74bf1701ae5111004cd8283f2b7.tar.bz2
[svn-r12102] Purpose:
Code cleanup Description: Clean up formatting & comments, etc. Platforms tested: None, very minor
Diffstat (limited to 'src/H5SL.c')
-rw-r--r--src/H5SL.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/src/H5SL.c b/src/H5SL.c
index 2e37dc0..a6e1d0b 100644
--- a/src/H5SL.c
+++ b/src/H5SL.c
@@ -204,23 +204,14 @@ H5FL_BARR_DEFINE_STATIC(H5SL_node_t,H5SL_node_ptr_t,H5SL_LEVEL_MAX);
EXAMPLES
REVISION LOG
--------------------------------------------------------------------------*/
- static herr_t
+static herr_t
H5SL_init_interface(void)
{
time_t curr_time; /* Current time, for seeding random number generator */
FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5SL_init_interface)
-/* A temporary patch for redstorm because Lustre there also uses srand.
- * This causes Lustre on Redstorm to hang with following errors. (Lustre
- * has fix it, but not deployed at RedStorm yet.
- * (client.c:568:ptlrpc_check_status()) @@@ type == PTL_RPC_MSG_ERR, err == -114 req@0x57a9660 x1/t0 o38->mds_l2@MDS_PEER_UUID:12 lens 240/272 ref 1 fl Rpc:R/100000/0 rc 0/-114
- *
- * 3/6/06. LA:
- * Shouldn't need patch anymore because HDsrand will use rand_r on Red Storm instead of srand.
- */
-
-/* Create randomized set of numbers */
+ /* Create randomized set of numbers */
curr_time=HDtime(NULL);
HDsrand((unsigned)curr_time);