Changeset 4877 for trunk/psLib/test/sys/tst_psMemory.c
- Timestamp:
- Aug 25, 2005, 1:42:07 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/test/sys/tst_psMemory.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/sys/tst_psMemory.c
r4547 r4877 6 6 * @author Robert DeSonia, MHPCC 7 7 * 8 * @version $Revision: 1. 1$ $Name: not supported by cvs2svn $9 * @date $Date: 2005-0 7-13 02:47:01$8 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 9 * @date $Date: 2005-08-25 23:42:07 $ 10 10 * 11 11 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 491 491 void memProblemCallback( psMemBlock *ptr, const char *file, unsigned int lineno ) 492 492 { 493 psLogMsg( __func__, PS_LOG_INFO, "memory callback called for id %l ld(%s:%d).",493 psLogMsg( __func__, PS_LOG_INFO, "memory callback called for id %lu (%s:%d).", 494 494 ptr->id, file, lineno ); 495 495 problemCallbackCalled++; … … 499 499 psMemId memAllocCallback( const psMemBlock *ptr ) 500 500 { 501 psLogMsg( __func__, PS_LOG_INFO, "block %l ldwas (re)allocated", ptr->id );501 psLogMsg( __func__, PS_LOG_INFO, "block %lu was (re)allocated", ptr->id ); 502 502 allocCallbackCalled++; 503 503 return 1; … … 506 506 psMemId memFreeCallback( const psMemBlock *ptr ) 507 507 { 508 psLogMsg( __func__, PS_LOG_INFO, "block %l ldwas freed", ptr->id );508 psLogMsg( __func__, PS_LOG_INFO, "block %lu was freed", ptr->id ); 509 509 freeCallbackCalled++; 510 510 return 1;
Note:
See TracChangeset
for help on using the changeset viewer.
