Changeset 3682 for trunk/psLib/src/collections/psHash.c
- Timestamp:
- Apr 7, 2005, 10:27:42 AM (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
r3286 r3682 12 12 * @author Robert DeSonia, MHPCC 13 13 * 14 * @version $Revision: 1.1 3$ $Name: not supported by cvs2svn $15 * @date $Date: 2005-0 2-18 22:17:20$14 * @version $Revision: 1.14 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2005-04-07 20:27:41 $ 16 16 * 17 17 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 90 90 psHashBucket* bucket = psAlloc(sizeof(psHashBucket)); 91 91 92 p _psMemSetDeallocator(bucket, (psFreeFcn) hashBucketFree);92 psMemSetDeallocator(bucket, (psFreeFcn) hashBucketFree); 93 93 94 94 // Initialize the bucket. … … 141 141 psHash* table = psAlloc(sizeof(psHash)); 142 142 143 p _psMemSetDeallocator(table, (psFreeFcn) hashFree);143 psMemSetDeallocator(table, (psFreeFcn) hashFree); 144 144 145 145 // Allocate memory for the buckets.
Note:
See TracChangeset
for help on using the changeset viewer.
