IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 5, 2005, 5:04:35 PM (21 years ago)
Author:
drobbin
Message:

made changes based on revisions in psLib SDRS rev. 15

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/collections/psHash.h

    r4352 r4457  
    1111 *  @author GLG, MHPCC
    1212 *
    13  *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2005-06-22 23:48:39 $
     13 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2005-07-06 03:04:35 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    4040typedef struct psHash
    4141{
    42     psS32 nbucket;                     ///< Number of buckets in hash table.
     42    long n;                            ///< Number of buckets in hash table.
    4343    psHashBucket* *buckets;            ///< The bucket data.
     44    void *lock;                        ///< Optional lock for thread safety.
    4445}
    4546psHash;
     
    4849psHash* psHashAlloc(
    4950    long nalloc                        ///< The number of buckets to allocate.
    50 );
     51)
     52;
    5153
    5254/// Insert entry into table.
Note: See TracChangeset for help on using the changeset viewer.