IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 27, 2005, 10:38:12 AM (21 years ago)
Author:
drobbin
Message:

made required changes based on apidelta-report-cycle6

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sys/psMemory.h

    r4397 r4401  
    1212 *  @ingroup MemoryManagement
    1313 *
    14  *  @version $Revision: 1.43 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2005-06-25 03:32:42 $
     14 *  @version $Revision: 1.44 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2005-06-27 20:38:12 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    6767    struct psMemBlock* previousBlock;  ///< previous block in allocation list
    6868    struct psMemBlock* nextBlock;      ///< next block allocation list
    69     psFreeFunc freeFcn;                 ///< deallocator.  If NULL, use generic deallocation.
     69    psFreeFunc freeFunc;               ///< deallocator.  If NULL, use generic deallocation.
    7070    size_t userMemorySize;             ///< the size of the user-portion of the memory block
    71     const psMemId id;               ///< a unique ID for this allocation
     71    const psMemId id;                  ///< a unique ID for this allocation
    7272    const char *file;                  ///< set from __FILE__ in e.g. p_psAlloc
    73     const psS32 lineno;                  ///< set from __LINE__ in e.g. p_psAlloc
     73    const psS32 lineno;                ///< set from __LINE__ in e.g. p_psAlloc
    7474    pthread_mutex_t refCounterMutex;   ///< mutex to ensure exclusive access to reference counter
    7575    psReferenceCount refCounter;       ///< how many times pointer is referenced
    76     psBool persistent;                   ///< marks if this non-user persistent data like error stack, etc.
     76    psBool persistent;                 ///< marks if this non-user persistent data like error stack, etc.
    7777    const psPtr endblock;              ///< initialised to p_psMEMMAGIC
    7878}
     
    152152void psMemSetDeallocator(
    153153    psPtr ptr,                         ///< the memory block to operate on
    154     psFreeFunc freeFcn                  ///< the function to be executed at deallocation
     154    psFreeFunc freeFunc                ///< the function to be executed at deallocation
    155155);
    156156
Note: See TracChangeset for help on using the changeset viewer.