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/psBitSet.h

    r4342 r4457  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2005-06-22 02:05:41 $
     14 *  @version $Revision: 1.21 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2005-07-06 03:04:35 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    3737typedef struct
    3838{
    39     psS32 n;                             ///< Number of bytes in the array
    40     char *bits;                        ///< Aray of bytes holding bits
     39    long n;                            ///< Number of bytes in the array
     40    psU8 *bits;                        ///< Aray of bytes holding bits
     41    void *lock;                        ///< Optional lock for thread safety
    4142}
    4243psBitSet;
     
    5758psBitSet* psBitSetAlloc(
    5859    long nalloc                            ///< Number of bits in psBitSet array
    59 );
     60)
     61;
    6062
    6163/** Set a bit.
     
    7072    /* @returned@ */
    7173    psBitSet* bitSet,                  ///< Pointer to psBitSet to be set.
    72     long bit                          ///< Bit to be set.
     74    long bit                           ///< Bit to be set.
    7375);
    7476
Note: See TracChangeset for help on using the changeset viewer.