IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 20, 2005, 4:11:16 PM (21 years ago)
Author:
drobbin
Message:

Implemented prototype and new code for psTimer fxns, tested, and debugged

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astro/psTime.h

    r5015 r5083  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.39 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2005-09-13 01:09:58 $
     13 *  @version $Revision: 1.40 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2005-09-21 02:11:16 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    8282);
    8383
     84/** Initialize time data.
     85 *
     86 *  Reads the configuration file and sets up the appropriate psTimeTables and predictions.
     87 */
     88void psTimeInitialize(
     89    const char *timeConfig             ///< psTime configuration file
     90);
     91
    8492/** Free memory persistant time data.
    8593 *
     
    8997 */
    9098psBool p_psTimeFinalize(void);
     99
     100/** Frees memory that was allocated by psTime functions.
     101 *
     102 *  Allows a subsequent search for leaked memory.
     103 */
     104void psTimeFinalize(void);
    91105
    92106/** Allocate time struct.
     
    369383);
    370384
     385bool psTimerStart(
     386    char *name
     387);
     388
     389psF64 psTimerClear(
     390    char *name
     391);
     392
     393psF64 psTimerMark(
     394    char *name
     395);
     396
     397psF64 psTimerStop(void);
     398
    371399/// @}
    372400
Note: See TracChangeset for help on using the changeset viewer.