IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 3706


Ignore:
Timestamp:
Apr 18, 2005, 1:40:15 PM (21 years ago)
Author:
evanalst
Message:

Change function name psTimeGetTime to psTimeGetNow. (SDR-13)

Location:
trunk/psLib
Files:
5 edited

Legend:

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

    r3705 r3706  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.56 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-04-18 23:30:54 $
     12 *  @version $Revision: 1.57 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-04-18 23:40:15 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    369369}
    370370
    371 psTime* psTimeGetTime(psTimeType type)
     371psTime* psTimeGetNow(psTimeType type)
    372372{
    373373    struct timeval now;
  • trunk/psLib/src/astro/psTime.h

    r3705 r3706  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-04-18 23:30:54 $
     12 *  @version $Revision: 1.25 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-04-18 23:40:15 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    9292 *  @return  psTime*: Struct with current time.
    9393 */
    94 psTime* psTimeGetTime(
     94psTime* psTimeGetNow(
    9595    psTimeType type                     ///< Type of time to get (UTC or TAI).
    9696);
  • trunk/psLib/src/astronomy/psTime.c

    r3705 r3706  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.56 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-04-18 23:30:54 $
     12 *  @version $Revision: 1.57 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-04-18 23:40:15 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    369369}
    370370
    371 psTime* psTimeGetTime(psTimeType type)
     371psTime* psTimeGetNow(psTimeType type)
    372372{
    373373    struct timeval now;
  • trunk/psLib/src/astronomy/psTime.h

    r3705 r3706  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-04-18 23:30:54 $
     12 *  @version $Revision: 1.25 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-04-18 23:40:15 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    9292 *  @return  psTime*: Struct with current time.
    9393 */
    94 psTime* psTimeGetTime(
     94psTime* psTimeGetNow(
    9595    psTimeType type                     ///< Type of time to get (UTC or TAI).
    9696);
  • trunk/psLib/test/astronomy/tst_psTime_01.c

    r3705 r3706  
    2323 *  @author  Ross Harman, MHPCC
    2424 *
    25  *  @version $Revision: 1.22 $  $Name: not supported by cvs2svn $
    26  *  @date  $Date: 2005-04-18 23:30:54 $
     25 *  @version $Revision: 1.23 $  $Name: not supported by cvs2svn $
     26 *  @date  $Date: 2005-04-18 23:40:15 $
    2727 *
    2828 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5050    printPositiveTestHeader(stdout,"psTime", "Get current TAI time");
    5151    psTime *timeA = NULL;
    52     timeA = psTimeGetTime(PS_TIME_TAI);
     52    timeA = psTimeGetNow(PS_TIME_TAI);
    5353    psFree(timeA);
    5454    printFooter(stdout, "psTime", "Get current TAI time", true);
Note: See TracChangeset for help on using the changeset viewer.