IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 13, 2006, 11:13:48 AM (20 years ago)
Author:
Paul Price
Message:

Synchronising with SDRS, and cleaning up:

  • Replaced is_psType() with PS_ASSERT_PTR() throughout psLib.
  • Changed "char *" to "psString" where appropriate in psDB and a few other places (to indicate pointers on the PS memory system).
  • Removed psLogArguments and psTraceArguments (functionality in psArgumentVerbosity).
  • Renamed psMetadataLookupMD to psMetadataLookupMetadata (it was about time...). Similarly with the psPolynomial?D{From,To}MD functions.
  • Removed psMetadataRemove() since it is ambiguous about what's removed --- use psMetadataRemove{Key,Index}.
  • psArrayRemoveByPos --> psArrayRemoveIndex
  • psArrayRemove --> psArrayRemoveData
File:
1 edited

Legend:

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

    r8705 r9538  
    1212 *  @ingroup MemoryManagement
    1313 *
    14  *  @version $Revision: 1.60 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2006-08-30 04:40:56 $
     14 *  @version $Revision: 1.61 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2006-10-13 21:13:48 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2929 *  @{
    3030 */
     31
     32#define P_PS_MEMMAGIC (psPtr)0xdeadbeef   // Magic number in psMemBlock header
    3133
    3234/**
     
    172174);
    173175
    174 /** Tells whether or not a pointer has been allocated as a psDataType.
    175  *
    176  * @return bool:        True if ptr is a psDataType, otherwise false.
    177  */
    178 bool is_psType(
    179     psPtr ptr                          ///< The pointer whose type to check
    180 );
    181 
    182176/** Checks the deallocator to see if the pointer matches the desired datatype.
    183177 *
Note: See TracChangeset for help on using the changeset viewer.