IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4071


Ignore:
Timestamp:
Jun 1, 2005, 11:08:49 AM (21 years ago)
Author:
jhoblitt
Message:

rename functions/datatypes to abv. function as func (not fcn)

Location:
trunk/doc/pslib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/pslib/ChangeLogSDRS.tex

    r4070 r4071  
    1 %%% $Id: ChangeLogSDRS.tex,v 1.112 2005-06-01 21:04:33 jhoblitt Exp $
     1%%% $Id: ChangeLogSDRS.tex,v 1.113 2005-06-01 21:08:49 jhoblitt Exp $
    22
    33\subsection{Changes from version 00 to version 01}
     
    640640  \item rename functions/datatypes to abv. ``allocate'' as ``alloc''
    641641  \item rename functions/datatypes to abv. ``memory'' as ``mem''
     642  \item rename functions/datatypes to abv. ``function'' as ``func'' (not ``fcn'')
    642643  \item remove ``my'' from function parameters names
    643644  \item add \code{psComparePtrFunc} function pointer
  • trunk/doc/pslib/psLibSDRS.tex

    r4070 r4071  
    1 %%% $Id: psLibSDRS.tex,v 1.246 2005-06-01 21:04:33 jhoblitt Exp $
     1%%% $Id: psLibSDRS.tex,v 1.247 2005-06-01 21:08:49 jhoblitt Exp $
    22\documentclass[panstarrs,spec]{panstarrs}
    33
     
    333333    struct psMemBlock* previousBlock;   ///< previous block in allocation list
    334334    struct psMemBlock* nextBlock;       ///< next block allocation list
    335     psFreeFcn freeFcn;                  ///< deallocator.  If NULL, use generic deallocation.
     335    psFreeFunc freeFunc;                 ///< deallocator.  If NULL, use generic deallocation.
    336336    size_t  userMemorySize;             ///< the size of the user-portion of the memory block
    337337    const psMemId id;                   ///< a unique ID for this allocation
     
    344344} psMemBlock;
    345345
    346 typedef void (*psFreeFcn)(void* ptr);
     346typedef void (*psFreeFunc)(void* ptr);
    347347typedef unsigned long psMemId;
    348348typedef unsigned long psReferenceCount;
     
    356356list.
    357357
    358 The element \code{freeFcn} specifies the deallocator associated with a
     358The element \code{freeFunc} specifies the deallocator associated with a
    359359specific block of memory.  If this element is \code{NULL}, the basic
    360360deallocator is used and the memory block must not be a rich data
     
    481481
    482482\begin{prototype}
    483 void psMemSetDeallocator(psPtr ptr, psFreeFcn freeFcn);     
    484 psFreeFcn psMemGetDeallocator(const psPtr ptr);     
     483void psMemSetDeallocator(psPtr ptr, psFreeFunc freeFunc);     
     484psFreeFunc psMemGetDeallocator(const psPtr ptr);     
    485485\end{prototype}
    486486
Note: See TracChangeset for help on using the changeset viewer.