Changeset 4457 for trunk/psLib/src/collections/psHash.h
- Timestamp:
- Jul 5, 2005, 5:04:35 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/psHash.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psHash.h
r4352 r4457 11 11 * @author GLG, MHPCC 12 12 * 13 * @version $Revision: 1.1 2$ $Name: not supported by cvs2svn $14 * @date $Date: 2005-0 6-22 23:48:39$13 * @version $Revision: 1.13 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2005-07-06 03:04:35 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 40 40 typedef struct psHash 41 41 { 42 psS32 nbucket;///< Number of buckets in hash table.42 long n; ///< Number of buckets in hash table. 43 43 psHashBucket* *buckets; ///< The bucket data. 44 void *lock; ///< Optional lock for thread safety. 44 45 } 45 46 psHash; … … 48 49 psHash* psHashAlloc( 49 50 long nalloc ///< The number of buckets to allocate. 50 ); 51 ) 52 ; 51 53 52 54 /// Insert entry into table.
Note:
See TracChangeset
for help on using the changeset viewer.
