IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 24, 2005, 4:02:05 PM (21 years ago)
Author:
drobbin
Message:

changed psFreeFcn to psFreeFunc

File:
1 edited

Legend:

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

    r4330 r4392  
    1212 *  @ingroup MemoryManagement
    1313 *
    14  *  @version $Revision: 1.41 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2005-06-21 03:01:37 $
     14 *  @version $Revision: 1.42 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2005-06-25 02:02:05 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5555
    5656/// typedef for deallocator.
    57 typedef void (*psFreeFcn) (psPtr ptr);
     57typedef void (*psFreeFunc) (psPtr ptr);
    5858
    5959/** Book-keeping data for storage allocator.
     
    6767    struct psMemBlock* previousBlock;  ///< previous block in allocation list
    6868    struct psMemBlock* nextBlock;      ///< next block allocation list
    69     psFreeFcn freeFcn;                 ///< deallocator.  If NULL, use generic deallocation.
     69    psFreeFunc freeFcn;                 ///< deallocator.  If NULL, use generic deallocation.
    7070    size_t userMemorySize;             ///< the size of the user-portion of the memory block
    7171    const psMemoryId id;               ///< a unique ID for this allocation
     
    152152void psMemSetDeallocator(
    153153    psPtr ptr,                         ///< the memory block to operate on
    154     psFreeFcn freeFcn                  ///< the function to be executed at deallocation
     154    psFreeFunc freeFcn                  ///< the function to be executed at deallocation
    155155);
    156156
     
    162162 *  within a struct.
    163163 *
    164  *  @return psFreeFcn    the routine to be called at deallocation.
    165  */
    166 psFreeFcn psMemGetDeallocator(
     164 *  @return psFreeFunc    the routine to be called at deallocation.
     165 */
     166psFreeFunc psMemGetDeallocator(
    167167    psPtr ptr                          ///< the memory block
    168168);
Note: See TracChangeset for help on using the changeset viewer.