Index: /branches/jch-memory/psLib/src/sys/psMemory.c
===================================================================
--- /branches/jch-memory/psLib/src/sys/psMemory.c	(revision 10908)
+++ /branches/jch-memory/psLib/src/sys/psMemory.c	(revision 10909)
@@ -9,6 +9,6 @@
 *  @author Joshua Hoblitt, University of Hawaii
 *
-*  @version $Revision: 1.88.2.16 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2007-01-05 01:58:01 $
+*  @version $Revision: 1.88.2.17 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2007-01-05 01:58:58 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -73,9 +73,9 @@
 
 #define HANDLE_BAD_BLOCK(memBlock, file, lineo, func) \
-if (badMemBlock(stderr, memBlock, file, lineo, func)) { \
+if (isBadMemBlock(stderr, memBlock, file, lineo, func)) { \
     PS_MEM_ABORT(__func__, "Unsafe to Continue\n"); \
 }
 
-static bool badMemBlock(FILE *output, const psMemBlock *memBlock, const char *file, unsigned int lineo, const char *func);
+static bool isBadMemBlock(FILE *output, const psMemBlock *memBlock, const char *file, unsigned int lineo, const char *func);
 
 // pointer to the last mem block that was allocated
@@ -148,5 +148,5 @@
  * N.b. If the block wasn't allocated by psAlloc, it will appear corrupted
  */
-static bool badMemBlock(FILE *output, const psMemBlock *memBlock, const char *file, unsigned int lineno, const char *func)
+static bool isBadMemBlock(FILE *output, const psMemBlock *memBlock, const char *file, unsigned int lineno, const char *func)
 {
     // n.b. since this is called by psMemCheckCorruption while the memblock
@@ -360,5 +360,5 @@
     psS32 nbad = 0;               // number of bad blocks
     for (psMemBlock *memBlock = lastMemBlockAllocated; memBlock != NULL; memBlock = memBlock->nextBlock) {
-        if (badMemBlock(output, memBlock, __FILE__, __LINE__, __func__)) {
+        if (isBadMemBlock(output, memBlock, __FILE__, __LINE__, __func__)) {
             nbad++;
 
@@ -652,5 +652,5 @@
     ptr = ((psMemBlock* ) vptr) - 1;
 
-    if (badMemBlock(ptr, __func__)) {
+    if (isBadMemBlock(ptr, __func__)) {
         (void)p_psMemDecrRefCounter(vptr, filename, lineno);
         memProblemCallback(ptr, file, lineno);
