Index: trunk/psLib/src/sysUtils/psErrorCodes.h
===================================================================
--- trunk/psLib/src/sysUtils/psErrorCodes.h	(revision 1385)
+++ 	(revision )
@@ -1,19 +1,0 @@
-#if !defined(PS_ERROR_CODES_H)
-#define PS_ERROR_CODES_H
-/*
- * This file was machine generated from ../../src/Utils/psErrorCodes.dat;
- * please do not modify it
- */
-typedef enum {
-    PS_ERR_NONE = 0,
-    PS_ERR_BASE = 256,
-    PS_ERR_UNKNOWN,
-    PS_ERR_IO,
-    PS_ERR_BADFREE,
-    PS_ERR_MEMORY_CORRUPTION,
-    PS_ERR_MEMORY_EXHAUSTED,
-    PS_ERR_BAD_INDEX,
-    PS_ERR_N_ERR_CLASSES,
-} psErrorCode;
-
-#endif
Index: trunk/psLib/src/sysUtils/psLogMsg.c
===================================================================
--- trunk/psLib/src/sysUtils/psLogMsg.c	(revision 1385)
+++ trunk/psLib/src/sysUtils/psLogMsg.c	(revision 1393)
@@ -11,6 +11,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.21 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-04 23:37:39 $
+ *  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-05 19:38:52 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -38,5 +38,4 @@
 #include "psLogMsg.h"
 #include "psError.h"
-#include "psErrorCodes.h"
 #include "psTrace.h"
 
Index: trunk/psLib/src/sysUtils/psTrace.c
===================================================================
--- trunk/psLib/src/sysUtils/psTrace.c	(revision 1385)
+++ trunk/psLib/src/sysUtils/psTrace.c	(revision 1393)
@@ -9,6 +9,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-04 23:37:39 $
+ *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-05 19:38:52 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -92,5 +92,5 @@
 {
     if (p_psCroot == NULL) {
-        p_psCroot = componentAlloc(".", DEFAULT_TRACE_LEVEL);
+        p_psCroot = componentAlloc(".", PS_DEFAULT_TRACE_LEVEL);
     }
 }
@@ -248,5 +248,5 @@
 
     if (NULL == currentNode) {
-        return(UNKNOWN_TRACE_LEVEL);
+        return(PS_UNKNOWN_TRACE_LEVEL);
     }
 
@@ -256,5 +256,5 @@
 
     if (aname[0] != '.') {
-        return(UNKNOWN_TRACE_LEVEL);
+        return(PS_UNKNOWN_TRACE_LEVEL);
     }
 
@@ -278,5 +278,5 @@
         }
     }
-    return(UNKNOWN_TRACE_LEVEL);
+    return(PS_UNKNOWN_TRACE_LEVEL);
 }
 
@@ -297,5 +297,5 @@
 {
     if (p_psCroot == NULL) {
-        return(UNKNOWN_TRACE_LEVEL);
+        return(PS_UNKNOWN_TRACE_LEVEL);
     }
 
@@ -324,7 +324,7 @@
     if (comp->name[0] == '\0') {
         printf("%*s%-*s %d\n", depth, "", 20 - depth,
-               "(root)", (comp->level == UNKNOWN_TRACE_LEVEL) ? 0 : comp->level);
+               "(root)", (comp->level == PS_UNKNOWN_TRACE_LEVEL) ? 0 : comp->level);
     } else {
-        if (comp->level == UNKNOWN_TRACE_LEVEL) {
+        if (comp->level == PS_UNKNOWN_TRACE_LEVEL) {
             printf("%*s%-*s %s\n", depth, "", 20 - depth,
                    comp->name, ".");
Index: trunk/psLib/src/sysUtils/psTrace.h
===================================================================
--- trunk/psLib/src/sysUtils/psTrace.h	(revision 1385)
+++ trunk/psLib/src/sysUtils/psTrace.h	(revision 1393)
@@ -9,6 +9,6 @@
  *  @author George Gusciora, MHPCC
  *
- *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-30 01:09:12 $
+ *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-05 19:38:52 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -17,6 +17,6 @@
 #define PS_TRACE_H 1
 
-#define UNKNOWN_TRACE_LEVEL -9999         // we don't know this name's level
-#define DEFAULT_TRACE_LEVEL 0
+#define PS_UNKNOWN_TRACE_LEVEL -9999         // we don't know this name's level
+#define PS_DEFAULT_TRACE_LEVEL 0
 
 
