IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 2561


Ignore:
Timestamp:
Nov 30, 2004, 2:55:34 PM (22 years ago)
Author:
evanalst
Message:

Update formatter descriptor for psMemoryId.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/sysUtils/tst_psMemory.c

    r2393 r2561  
    66*  @author Robert DeSonia, MHPCC
    77*
    8 *  @version $Revision: 1.28 $ $Name: not supported by cvs2svn $
    9 *  @date $Date: 2004-11-22 21:20:32 $
     8*  @version $Revision: 1.29 $ $Name: not supported by cvs2svn $
     9*  @date $Date: 2004-12-01 00:55:34 $
    1010*
    1111*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    516516void memProblemCallback( const psMemBlock *ptr, const char *file, psS32 lineno )
    517517{
    518     psLogMsg( __func__, PS_LOG_INFO, "memory callback called for id %d (%s:%d).",
     518    psLogMsg( __func__, PS_LOG_INFO, "memory callback called for id %lld (%s:%d).",
    519519              ptr->id, file, lineno );
    520520    problemCallbackCalled++;
     
    524524psMemoryId memAllocateCallback( const psMemBlock *ptr )
    525525{
    526     psLogMsg( __func__, PS_LOG_INFO, "block %d was (re)allocated", ptr->id );
     526    psLogMsg( __func__, PS_LOG_INFO, "block %lld was (re)allocated", ptr->id );
    527527    allocCallbackCalled++;
    528528    return 1;
     
    531531psMemoryId memFreeCallback( const psMemBlock *ptr )
    532532{
    533     psLogMsg( __func__, PS_LOG_INFO, "block %d was freed", ptr->id );
     533    psLogMsg( __func__, PS_LOG_INFO, "block %lld was freed", ptr->id );
    534534    freeCallbackCalled++;
    535535    return 1;
Note: See TracChangeset for help on using the changeset viewer.