Index: /trunk/psLib/src/sys/psAbort.c
===================================================================
--- /trunk/psLib/src/sys/psAbort.c	(revision 1137)
+++ /trunk/psLib/src/sys/psAbort.c	(revision 1138)
@@ -9,6 +9,6 @@
  *  @author Eric Van Alst, MHPCC
  *   
- *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-04-27 02:17:53 $
+ *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-30 01:17:20 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -65,5 +65,5 @@
 
     // Call logging function with PS_LOG_ABORT level
-    psVLogMsg(name, PS_LOG_ABORT, fmt, argPtr);
+    psLogMsgV(name, PS_LOG_ABORT, fmt, argPtr);
 
     // Clean up stack after variable arguement has been used
Index: /trunk/psLib/src/sys/psError.c
===================================================================
--- /trunk/psLib/src/sys/psError.c	(revision 1137)
+++ /trunk/psLib/src/sys/psError.c	(revision 1138)
@@ -10,6 +10,6 @@
  *  @author Eric Van Alst, MHPCC
  *   
- *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-04-21 21:14:41 $
+ *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-30 01:17:20 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -65,5 +65,5 @@
 
     // Call logging function with PS_LOG_ERROR level
-    psVLogMsg(name, PS_LOG_ERROR, fmt, argPtr);
+    psLogMsgV(name, PS_LOG_ERROR, fmt, argPtr);
 
     // Clean up stack after variable argument has been used
Index: /trunk/psLib/src/sys/psLogMsg.c
===================================================================
--- /trunk/psLib/src/sys/psLogMsg.c	(revision 1137)
+++ /trunk/psLib/src/sys/psLogMsg.c	(revision 1138)
@@ -11,6 +11,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-14 19:40:15 $
+ *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-30 01:17:20 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -191,5 +191,5 @@
  NULL.
  *****************************************************************************/
-void psVLogMsg(const char *name,
+void psLogMsgV(const char *name,
                int level,
                const char *fmt,
@@ -341,5 +341,5 @@
 
     va_start(ap, fmt);
-    psVLogMsg(name, level, fmt, ap);
+    psLogMsgV(name, level, fmt, ap);
     va_end(ap);
 }
Index: /trunk/psLib/src/sys/psLogMsg.h
===================================================================
--- /trunk/psLib/src/sys/psLogMsg.h	(revision 1137)
+++ /trunk/psLib/src/sys/psLogMsg.h	(revision 1138)
@@ -11,6 +11,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-12 05:50:01 $
+ *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-30 01:17:20 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -63,5 +63,5 @@
 /// This procedure is functionally equivalent to psLogMsg(), except that
 /// it takes a va_list as the message parameter, not a printf-style string.
-void psVLogMsg(const char *name, ///< name of the log source
+void psLogMsgV(const char *name, ///< name of the log source
                int myLevel,      ///< severity level of this log message
                const char *fmt,  ///< printf-style format command
Index: /trunk/psLib/src/sysUtils/psAbort.c
===================================================================
--- /trunk/psLib/src/sysUtils/psAbort.c	(revision 1137)
+++ /trunk/psLib/src/sysUtils/psAbort.c	(revision 1138)
@@ -9,6 +9,6 @@
  *  @author Eric Van Alst, MHPCC
  *   
- *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-04-27 02:17:53 $
+ *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-30 01:17:20 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -65,5 +65,5 @@
 
     // Call logging function with PS_LOG_ABORT level
-    psVLogMsg(name, PS_LOG_ABORT, fmt, argPtr);
+    psLogMsgV(name, PS_LOG_ABORT, fmt, argPtr);
 
     // Clean up stack after variable arguement has been used
Index: /trunk/psLib/src/sysUtils/psError.c
===================================================================
--- /trunk/psLib/src/sysUtils/psError.c	(revision 1137)
+++ /trunk/psLib/src/sysUtils/psError.c	(revision 1138)
@@ -10,6 +10,6 @@
  *  @author Eric Van Alst, MHPCC
  *   
- *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-04-21 21:14:41 $
+ *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-30 01:17:20 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -65,5 +65,5 @@
 
     // Call logging function with PS_LOG_ERROR level
-    psVLogMsg(name, PS_LOG_ERROR, fmt, argPtr);
+    psLogMsgV(name, PS_LOG_ERROR, fmt, argPtr);
 
     // Clean up stack after variable argument has been used
Index: /trunk/psLib/src/sysUtils/psLogMsg.c
===================================================================
--- /trunk/psLib/src/sysUtils/psLogMsg.c	(revision 1137)
+++ /trunk/psLib/src/sysUtils/psLogMsg.c	(revision 1138)
@@ -11,6 +11,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-14 19:40:15 $
+ *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-30 01:17:20 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -191,5 +191,5 @@
  NULL.
  *****************************************************************************/
-void psVLogMsg(const char *name,
+void psLogMsgV(const char *name,
                int level,
                const char *fmt,
@@ -341,5 +341,5 @@
 
     va_start(ap, fmt);
-    psVLogMsg(name, level, fmt, ap);
+    psLogMsgV(name, level, fmt, ap);
     va_end(ap);
 }
Index: /trunk/psLib/src/sysUtils/psLogMsg.h
===================================================================
--- /trunk/psLib/src/sysUtils/psLogMsg.h	(revision 1137)
+++ /trunk/psLib/src/sysUtils/psLogMsg.h	(revision 1138)
@@ -11,6 +11,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-12 05:50:01 $
+ *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-06-30 01:17:20 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -63,5 +63,5 @@
 /// This procedure is functionally equivalent to psLogMsg(), except that
 /// it takes a va_list as the message parameter, not a printf-style string.
-void psVLogMsg(const char *name, ///< name of the log source
+void psLogMsgV(const char *name, ///< name of the log source
                int myLevel,      ///< severity level of this log message
                const char *fmt,  ///< printf-style format command
Index: /trunk/psLib/src/sysUtils/psTrace.d
===================================================================
--- /trunk/psLib/src/sysUtils/psTrace.d	(revision 1137)
+++ /trunk/psLib/src/sysUtils/psTrace.d	(revision 1138)
@@ -1,1 +1,1 @@
-psTrace.o psTrace.d : psTrace.c
+psTrace.o psTrace.d : psTrace.c psMemory.h psTrace.h psString.h psError.h
Index: /trunk/psLib/test/dataManip/Makefile
===================================================================
--- /trunk/psLib/test/dataManip/Makefile	(revision 1137)
+++ /trunk/psLib/test/dataManip/Makefile	(revision 1138)
@@ -3,6 +3,6 @@
 ##  Makefile:   test/sysUtils
 ##
-##  $Revision: 1.22 $  $Name: not supported by cvs2svn $
-##  $Date: 2004-06-30 00:18:49 $
+##  $Revision: 1.23 $  $Name: not supported by cvs2svn $
+##  $Date: 2004-06-30 01:17:20 $
 ##
 ##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -47,8 +47,8 @@
  tst_psImageStats02 \
  tst_psImageStats03 \
- tst_psMinimize00 \
  tst_psImageIO \
  tst_psVectorFFT \
- tst_psImageFFT
+ tst_psImageFFT 
+# tst_psMinimize00 
 
 DEPENDENCIES = $(addprefix builddir/,$(addsuffix .d,$(TARGET)))
Index: /trunk/psLib/test/sysUtils/builddir/tst_psLogMsg00.d
===================================================================
--- /trunk/psLib/test/sysUtils/builddir/tst_psLogMsg00.d	(revision 1137)
+++ /trunk/psLib/test/sysUtils/builddir/tst_psLogMsg00.d	(revision 1138)
@@ -3,6 +3,6 @@
   ../../include/psTrace.h ../../include/psAbort.h ../../include/psError.h \
   ../../include/psString.h ../../include/psType.h ../../include/psList.h \
-  ../../include/psVector.h ../../include/psHash.h \
-  ../../include/psScalar.h ../../include/psImage.h \
+  ../../include/psCompare.h ../../include/psVector.h \
+  ../../include/psHash.h ../../include/psScalar.h ../../include/psImage.h \
   ../../include/psBitSet.h ../../include/psSort.h ../../include/psStats.h \
   ../../include/psMatrix.h ../../include/psMatrixVectorArithmetic.h \
Index: /trunk/psLib/test/sysUtils/tst_psLogMsg00.c
===================================================================
--- /trunk/psLib/test/sysUtils/tst_psLogMsg00.c	(revision 1137)
+++ /trunk/psLib/test/sysUtils/tst_psLogMsg00.c	(revision 1138)
@@ -15,7 +15,7 @@
     va_list ap;
 
-    // Test whether psVLogMsg() accept a va_list for output variables.
+    // Test whether psLogMsgV() accept a va_list for output variables.
     va_start(ap, fmt);
-    psVLogMsg(name, level, fmt, ap);
+    psLogMsgV(name, level, fmt, ap);
     va_end(ap);
 }
@@ -44,5 +44,5 @@
 
 
-    // Test whether psVLogMsg() accept a va_list for output variables.
+    // Test whether psLogMsgV() accept a va_list for output variables.
     printPositiveTestHeader(stdout,
                             "psLogMsg functions",
