Changeset 2561 for trunk/psLib/test/sysUtils/tst_psMemory.c
- Timestamp:
- Nov 30, 2004, 2:55:34 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/test/sysUtils/tst_psMemory.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/sysUtils/tst_psMemory.c
r2393 r2561 6 6 * @author Robert DeSonia, MHPCC 7 7 * 8 * @version $Revision: 1.2 8$ $Name: not supported by cvs2svn $9 * @date $Date: 2004-1 1-22 21:20:32$8 * @version $Revision: 1.29 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2004-12-01 00:55:34 $ 10 10 * 11 11 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 516 516 void memProblemCallback( const psMemBlock *ptr, const char *file, psS32 lineno ) 517 517 { 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).", 519 519 ptr->id, file, lineno ); 520 520 problemCallbackCalled++; … … 524 524 psMemoryId memAllocateCallback( const psMemBlock *ptr ) 525 525 { 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 ); 527 527 allocCallbackCalled++; 528 528 return 1; … … 531 531 psMemoryId memFreeCallback( const psMemBlock *ptr ) 532 532 { 533 psLogMsg( __func__, PS_LOG_INFO, "block % d was freed", ptr->id );533 psLogMsg( __func__, PS_LOG_INFO, "block %lld was freed", ptr->id ); 534 534 freeCallbackCalled++; 535 535 return 1;
Note:
See TracChangeset
for help on using the changeset viewer.
