Index: trunk/psLib/src/astro/psTime.h
===================================================================
--- trunk/psLib/src/astro/psTime.h	(revision 5015)
+++ trunk/psLib/src/astro/psTime.h	(revision 5083)
@@ -11,6 +11,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.39 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-09-13 01:09:58 $
+ *  @version $Revision: 1.40 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-09-21 02:11:16 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -82,4 +82,12 @@
 );
 
+/** Initialize time data.
+ *
+ *  Reads the configuration file and sets up the appropriate psTimeTables and predictions.
+ */
+void psTimeInitialize(
+    const char *timeConfig             ///< psTime configuration file
+);
+
 /** Free memory persistant time data.
  *
@@ -89,4 +97,10 @@
  */
 psBool p_psTimeFinalize(void);
+
+/** Frees memory that was allocated by psTime functions.
+ *
+ *  Allows a subsequent search for leaked memory.
+ */
+void psTimeFinalize(void);
 
 /** Allocate time struct.
@@ -369,4 +383,18 @@
 );
 
+bool psTimerStart(
+    char *name
+);
+
+psF64 psTimerClear(
+    char *name
+);
+
+psF64 psTimerMark(
+    char *name
+);
+
+psF64 psTimerStop(void);
+
 /// @}
 
