Index: trunk/psLib/src/sys/psError.h
===================================================================
--- trunk/psLib/src/sys/psError.h	(revision 4162)
+++ trunk/psLib/src/sys/psError.h	(revision 4190)
@@ -12,6 +12,6 @@
  *  @author Eric Van Alst, MHPCC
  *
- *  @version $Revision: 1.21 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-06-08 23:40:45 $
+ *  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-09 19:26:48 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -120,6 +120,6 @@
     psErrorCode code,                  ///< Error class code
     psBool new,                        ///< true if error originates at this location
-    const char* fmt,
-    ...
+    const char* fmt,                   ///< printf-style format of header line
+    ...                                ///< any parameters required in fmt
 );
 
@@ -132,23 +132,42 @@
  */
 void psWarning(
-    const char* fmt,
-    ...
+    const char* fmt,                   ///< printf-style format of header line
+    ...                                ///< any parameters required in fmt
 );
 #else // #ifdef DOXYGEN
+
+/** Reports an error message to the logging facility
+ *  
+ *  This function will invoke the psLogMsg function with a level of
+ *  PS_LOG_ERROR and pass the parameters name and fmt to generate a proper
+ *  log message.  This function is used to check a specific code location.
+ *  
+ *  This function modifies the error stack.
+ *
+ *  @return psErrorcode    the given error code
+ */
 psErrorCode p_psError(
-    const char* file,
-    int lineno,
-    const char* func,
+    const char* file,                  ///< file name
+    int lineno,                        ///< line number in file
+    const char* func,                  ///< function name
     psErrorCode code,                  ///< Error class code
     psBool new,                        ///< true if error originates at this location
-    const char* fmt,
-    ...
+    const char* fmt,                   ///< printf-style format of header line
+    ...                                ///< any parameters required in fmt
 );
+
+/** Logs a warning message.
+ *  
+ *  This procedure logs a message to the destination set by a prior call to
+ *  psLogSetDestination().  This is equivalent to calling psLogMsg with a level of 
+ *  PS_LOG_WARN.  This function is used to check a specific code location.
+ *  
+*/
 void p_psWarning(
-    const char* file,
-    int lineno,
-    const char* func,
-    const char* fmt,
-    ...
+    const char* file,                  ///< file name
+    int lineno,                        ///< line number in file
+    const char* func,                  ///< function name
+    const char* fmt,                   ///< printf-style format of header line
+    ...                                ///< any parameters required in fmt
 );
 
