IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 20, 2005, 3:40:10 PM (21 years ago)
Author:
drobbin
Message:

made minor changes in accordance with newest api-delta doc

File:
1 edited

Legend:

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

    r4578 r4589  
    1212 *  @ingroup MemoryManagement
    1313 *
    14  *  @version $Revision: 1.46 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2005-07-18 20:54:22 $
     14 *  @version $Revision: 1.47 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2005-07-21 01:40:10 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    169169 */
    170170psFreeFunc psMemGetDeallocator(
    171     psPtr ptr                          ///< the memory block
     171    const psPtr ptr                          ///< the memory block
    172172);
    173173
     
    239239void p_psFree(
    240240    psPtr ptr,                         ///< Pointer to free
    241     const char *file,                  ///< File of call
     241    const char *filename,              ///< File of call
    242242    unsigned int lineno                ///< Line number of call
    243243);
     
    260260 *  If memory leaks are found, the Memory Problem callback will be called as well.
    261261 *
    262  *  return psS32  number of memory blocks found as 'leaks', i.e., the number of currently allocated memory
     262 *  @return int  number of memory blocks found as 'leaks', i.e., the number of currently allocated memory
    263263 *              blocks above id0 that have not been freed.
    264264 *  @see psAlloc, psFree, psgetMemId, psMemProblemCallbackSet
    265265 *  @ingroup memTracing
    266266 */
    267 psS32 psMemCheckLeaks(
     267int psMemCheckLeaks(
    268268    psMemId id0,                       ///< don't list blocks with id < id0
    269269    psMemBlock* ** arr,                ///< pointer to array of pointers to leaked blocks, or NULL
     
    275275 *  i.e., invalid markers that signify a buffer under/overflow.
    276276 *
     277 *  @return int
     278 *
    277279 *  @ingroup memTracing
    278280 */
     
    283285/** Return reference counter
    284286 *
     287 *  @return psReferenceCount
     288 *
    285289 *  @ingroup memRefCount
    286290 */
     
    290294
    291295/** Increment reference counter and return the pointer
     296 *
     297 *  @return psPtr
    292298 *
    293299 *  @ingroup memRefCount
Note: See TracChangeset for help on using the changeset viewer.