Index: /trunk/psLib/src/sys/psConfigure.c
===================================================================
--- /trunk/psLib/src/sys/psConfigure.c	(revision 4136)
+++ /trunk/psLib/src/sys/psConfigure.c	(revision 4137)
@@ -1,9 +1,10 @@
 /** @file  psConfigure.c
  *
- *  @brief Contains the declarations for initialization, memory finalization, and configuration.
+ *  @brief Contains the declarations for initialization, memory finalization,
+ *   and configuration.
  *
- *  These functions initalize psLib data before the beginning of a run and remove (finalize) the
- *  same data after the run is complete. A function is also provided to return the current
- *  psLib version.
+ *  These functions initalize psLib data before the beginning of a run and
+ *  remove (finalize) the same data after the run is complete. A function is
+ *  also provided to return the current psLib version.
  *
  *  @ingroup Configure
@@ -12,6 +13,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-17 19:26:24 $
+ *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-07 22:53:40 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -34,10 +35,10 @@
 void psLibInit(bool predictable, const char* timeConfig)
 {
-    // Still needs error codes to be set
-    // Still needs random number generator initialization
-    // Please code me, Robert and George.
+    // XXX: Still needs error codes to be set
+    // XXX: Still needs random number generator initialization
 
     if(!p_psTimeInit(timeConfig)) {
-        psError(PS_ERR_BAD_PARAMETER_VALUE, true, PS_ERRORTEXT_psConfigure_INITIALIZATION_FAILED, "psTime");
+        psError(PS_ERR_BAD_PARAMETER_VALUE, true,
+                PS_ERRORTEXT_psConfigure_INITIALIZATION_FAILED, "psTime");
         return;
     }
@@ -49,5 +50,6 @@
 
     if(!p_psTimeFinalize()) {
-        psError(PS_ERR_BAD_PARAMETER_VALUE, true, PS_ERRORTEXT_psConfigure_FINALIZATION_FAILED, "psTime");
+        psError(PS_ERR_BAD_PARAMETER_VALUE, true,
+                PS_ERRORTEXT_psConfigure_FINALIZATION_FAILED, "psTime");
         return;
     }
Index: /trunk/psLib/src/sys/psConfigure.h
===================================================================
--- /trunk/psLib/src/sys/psConfigure.h	(revision 4136)
+++ /trunk/psLib/src/sys/psConfigure.h	(revision 4137)
@@ -1,18 +1,18 @@
 /** @file  psConfigure.h
  *
- *  @brief Contains the declarations for initialization, memory finalization, and configuration.
+ *  @brief Contains the declarations for initialization, memory finalization,
+ *   and configuration.
  *
- *  These functions initalize psLib data before the beginning of a run and remove (finalize) the
- *  same data after the run is complete. A function is also provided to return the current
- *  psLib version.
+ *  These functions initalize psLib data before the beginning of a run and
+ *  remove (finalize) the same data after the run is complete.  A function is
+ *  also provided to return the current psLib version.
  *
  *  @ingroup Configure
  *
  *  @author Ross Harman, MHPCC
- *  @author George Gusciora, MHPCC
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-17 19:26:24 $
+ *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-07 22:53:40 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -21,5 +21,4 @@
 #ifndef PS_CONFIGURE_H
 #define PS_CONFIGURE_H
-
 
 /** @addtogroup Configure
@@ -39,6 +38,6 @@
 /** Initializes persistent memory.
  *
- *  Creates persistant memory items used throughout psLib. Items created within this method should be freed
- *  with the psLibFinalize function.
+ *  Creates persistant memory items used throughout psLib. Items created 
+ *  within this method should be freed with the psLibFinalize function.
  *  current, a non-NULL psErr is returned with code PS_ERR_NONE.
  *
@@ -47,11 +46,11 @@
 void psLibInit(
     bool predictable,
-    const char* timeConfig
+    const char* timeConfig           ///< Filename of config file for psTime.
 );
 
 /** Removes persistant memory created with the psLibInit function.
  *
- *  The memory created but not freed by psLib modules should be freed within this
- *  function at the end of a psLib execution cycle.
+ *  The memory created but not freed by psLib modules should be freed
+ *  within this function at the end of a psLib execution cycle.
  *
  *  @return void: void.
Index: /trunk/psLib/src/sysUtils/psConfigure.c
===================================================================
--- /trunk/psLib/src/sysUtils/psConfigure.c	(revision 4136)
+++ /trunk/psLib/src/sysUtils/psConfigure.c	(revision 4137)
@@ -1,9 +1,10 @@
 /** @file  psConfigure.c
  *
- *  @brief Contains the declarations for initialization, memory finalization, and configuration.
+ *  @brief Contains the declarations for initialization, memory finalization,
+ *   and configuration.
  *
- *  These functions initalize psLib data before the beginning of a run and remove (finalize) the
- *  same data after the run is complete. A function is also provided to return the current
- *  psLib version.
+ *  These functions initalize psLib data before the beginning of a run and
+ *  remove (finalize) the same data after the run is complete. A function is
+ *  also provided to return the current psLib version.
  *
  *  @ingroup Configure
@@ -12,6 +13,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-17 19:26:24 $
+ *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-07 22:53:40 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -34,10 +35,10 @@
 void psLibInit(bool predictable, const char* timeConfig)
 {
-    // Still needs error codes to be set
-    // Still needs random number generator initialization
-    // Please code me, Robert and George.
+    // XXX: Still needs error codes to be set
+    // XXX: Still needs random number generator initialization
 
     if(!p_psTimeInit(timeConfig)) {
-        psError(PS_ERR_BAD_PARAMETER_VALUE, true, PS_ERRORTEXT_psConfigure_INITIALIZATION_FAILED, "psTime");
+        psError(PS_ERR_BAD_PARAMETER_VALUE, true,
+                PS_ERRORTEXT_psConfigure_INITIALIZATION_FAILED, "psTime");
         return;
     }
@@ -49,5 +50,6 @@
 
     if(!p_psTimeFinalize()) {
-        psError(PS_ERR_BAD_PARAMETER_VALUE, true, PS_ERRORTEXT_psConfigure_FINALIZATION_FAILED, "psTime");
+        psError(PS_ERR_BAD_PARAMETER_VALUE, true,
+                PS_ERRORTEXT_psConfigure_FINALIZATION_FAILED, "psTime");
         return;
     }
Index: /trunk/psLib/src/sysUtils/psConfigure.h
===================================================================
--- /trunk/psLib/src/sysUtils/psConfigure.h	(revision 4136)
+++ /trunk/psLib/src/sysUtils/psConfigure.h	(revision 4137)
@@ -1,18 +1,18 @@
 /** @file  psConfigure.h
  *
- *  @brief Contains the declarations for initialization, memory finalization, and configuration.
+ *  @brief Contains the declarations for initialization, memory finalization,
+ *   and configuration.
  *
- *  These functions initalize psLib data before the beginning of a run and remove (finalize) the
- *  same data after the run is complete. A function is also provided to return the current
- *  psLib version.
+ *  These functions initalize psLib data before the beginning of a run and
+ *  remove (finalize) the same data after the run is complete.  A function is
+ *  also provided to return the current psLib version.
  *
  *  @ingroup Configure
  *
  *  @author Ross Harman, MHPCC
- *  @author George Gusciora, MHPCC
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-02-17 19:26:24 $
+ *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-07 22:53:40 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -21,5 +21,4 @@
 #ifndef PS_CONFIGURE_H
 #define PS_CONFIGURE_H
-
 
 /** @addtogroup Configure
@@ -39,6 +38,6 @@
 /** Initializes persistent memory.
  *
- *  Creates persistant memory items used throughout psLib. Items created within this method should be freed
- *  with the psLibFinalize function.
+ *  Creates persistant memory items used throughout psLib. Items created 
+ *  within this method should be freed with the psLibFinalize function.
  *  current, a non-NULL psErr is returned with code PS_ERR_NONE.
  *
@@ -47,11 +46,11 @@
 void psLibInit(
     bool predictable,
-    const char* timeConfig
+    const char* timeConfig           ///< Filename of config file for psTime.
 );
 
 /** Removes persistant memory created with the psLibInit function.
  *
- *  The memory created but not freed by psLib modules should be freed within this
- *  function at the end of a psLib execution cycle.
+ *  The memory created but not freed by psLib modules should be freed
+ *  within this function at the end of a psLib execution cycle.
  *
  *  @return void: void.
