Changeset 4392 for trunk/psLib/src/collections/psHash.c
- Timestamp:
- Jun 24, 2005, 4:02:05 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/psHash.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psHash.c
r4352 r4392 12 12 * @author GLG, MHPCC 13 13 * 14 * @version $Revision: 1.2 0$ $Name: not supported by cvs2svn $15 * @date $Date: 2005-06-2 2 23:48:39$14 * @version $Revision: 1.21 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2005-06-25 02:02:05 $ 16 16 * 17 17 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 91 91 psHashBucket* bucket = psAlloc(sizeof(psHashBucket)); 92 92 93 psMemSetDeallocator(bucket, (psFreeF cn) hashBucketFree);93 psMemSetDeallocator(bucket, (psFreeFunc) hashBucketFree); 94 94 95 95 // Initialize the bucket. … … 142 142 psHash* table = psAlloc(sizeof(psHash)); 143 143 144 psMemSetDeallocator(table, (psFreeF cn) hashFree);144 psMemSetDeallocator(table, (psFreeFunc) hashFree); 145 145 146 146 // Allocate memory for the buckets.
Note:
See TracChangeset
for help on using the changeset viewer.
