IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 2972


Ignore:
Timestamp:
Jan 13, 2005, 9:51:27 AM (22 years ago)
Author:
desonia
Message:

* empty log message *

Location:
trunk/psLib/src
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astronomy/psMetadata.h

    r2971 r2972  
    1111*  @author Ross Harman, MHPCC
    1212*
    13 *  @version $Revision: 1.31 $ $Name: not supported by cvs2svn $
    14 *  @date $Date: 2005-01-13 19:50:44 $
     13*  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
     14*  @date $Date: 2005-01-13 19:51:27 $
    1515*
    1616*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    220220 * @return psF32 : Value of metadata item.
    221221 */
    222 psF64 psMetadataLookupF32(
     222psF32 psMetadataLookupF32(
    223223    psMetadata *md,            ///< Metadata collection to lookup metadata item.
    224224    const char *key,           ///< Name of metadata key.
  • trunk/psLib/src/collections/psMetadata.h

    r2971 r2972  
    1111*  @author Ross Harman, MHPCC
    1212*
    13 *  @version $Revision: 1.31 $ $Name: not supported by cvs2svn $
    14 *  @date $Date: 2005-01-13 19:50:44 $
     13*  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
     14*  @date $Date: 2005-01-13 19:51:27 $
    1515*
    1616*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    220220 * @return psF32 : Value of metadata item.
    221221 */
    222 psF64 psMetadataLookupF32(
     222psF32 psMetadataLookupF32(
    223223    psMetadata *md,            ///< Metadata collection to lookup metadata item.
    224224    const char *key,           ///< Name of metadata key.
  • trunk/psLib/src/sys/psError.h

    r2273 r2972  
    1212 *  @author Eric Van Alst, MHPCC
    1313 *
    14  *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2004-11-04 01:05:00 $
     14 *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2005-01-13 19:50:45 $
    1616 *
    1717 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    4242/** Get a error from the error stack
    4343 *
    44  *  Previous errors on the stack are returned by psErrorGet (a value of 0 
     44 *  Previous errors on the stack are returned by psErrorGet (a value of 0
    4545 *  passed to psErrorGet is equivalent to a call to psErrorLast).
    4646 *
    47  *  if no error is at the which position, a non-NULL psErr is returned with 
     47 *  if no error is at the which position, a non-NULL psErr is returned with
    4848 *  code PS_ERR_NONE.
    4949 *
     
    5656/** Get last error put on the error stack
    5757 *
    58  *  The last error reported is available from psErrorLast; if no errors are 
     58 *  The last error reported is available from psErrorLast; if no errors are
    5959 *  current, a non-NULL psErr is returned with code PS_ERR_NONE.
    6060 *
     
    7070void psErrorClear(void);
    7171
     72/** Get the error stack depth
     73 *
     74 *  @return psS32   The number of items on the error stack
     75 */
     76psS32 psErrorGetStackSize();
     77
    7278/** Prints error stack to specified open file descriptor
    7379 *
    74  *  The entire error stack may be printed to an open file descriptor by 
    75  *  calling psErrorStackPrint; if and only if there are current errors, the 
    76  *  printf-style string fmt is first printed to the file descriptor fd. In 
     80 *  The entire error stack may be printed to an open file descriptor by
     81 *  calling psErrorStackPrint; if and only if there are current errors, the
     82 *  printf-style string fmt is first printed to the file descriptor fd. In
    7783 *  this printout, error codes are replaced by their string equivalents.
    7884 *
     
    8692/** Prints error stack to specified open file descriptor
    8793 *
    88  *  The entire error stack may be printed to an open file descriptor by 
    89  *  calling psErrorStackPrintV; if and only if there are current errors, the 
    90  *  vprintf-style string fmt is first printed to the file descriptor fd. In 
     94 *  The entire error stack may be printed to an open file descriptor by
     95 *  calling psErrorStackPrintV; if and only if there are current errors, the
     96 *  vprintf-style string fmt is first printed to the file descriptor fd. In
    9197 *  this printout, error codes are replaced by their string equivalents.
    9298 *
  • trunk/psLib/src/sysUtils/psError.c

    r2273 r2972  
    99 *
    1010 *  @author Eric Van Alst, MHPCC
    11  *   
    12  *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-11-04 01:05:00 $
     11 *
     12 *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-01-13 19:50:45 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    129129}
    130130
     131psS32 psErrorGetStackSize()
     132{
     133    return errorStackSize;
     134}
     135
    131136psErr* psErrorLast(void)
    132137{
  • trunk/psLib/src/sysUtils/psError.h

    r2273 r2972  
    1212 *  @author Eric Van Alst, MHPCC
    1313 *
    14  *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2004-11-04 01:05:00 $
     14 *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2005-01-13 19:50:45 $
    1616 *
    1717 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    4242/** Get a error from the error stack
    4343 *
    44  *  Previous errors on the stack are returned by psErrorGet (a value of 0 
     44 *  Previous errors on the stack are returned by psErrorGet (a value of 0
    4545 *  passed to psErrorGet is equivalent to a call to psErrorLast).
    4646 *
    47  *  if no error is at the which position, a non-NULL psErr is returned with 
     47 *  if no error is at the which position, a non-NULL psErr is returned with
    4848 *  code PS_ERR_NONE.
    4949 *
     
    5656/** Get last error put on the error stack
    5757 *
    58  *  The last error reported is available from psErrorLast; if no errors are 
     58 *  The last error reported is available from psErrorLast; if no errors are
    5959 *  current, a non-NULL psErr is returned with code PS_ERR_NONE.
    6060 *
     
    7070void psErrorClear(void);
    7171
     72/** Get the error stack depth
     73 *
     74 *  @return psS32   The number of items on the error stack
     75 */
     76psS32 psErrorGetStackSize();
     77
    7278/** Prints error stack to specified open file descriptor
    7379 *
    74  *  The entire error stack may be printed to an open file descriptor by 
    75  *  calling psErrorStackPrint; if and only if there are current errors, the 
    76  *  printf-style string fmt is first printed to the file descriptor fd. In 
     80 *  The entire error stack may be printed to an open file descriptor by
     81 *  calling psErrorStackPrint; if and only if there are current errors, the
     82 *  printf-style string fmt is first printed to the file descriptor fd. In
    7783 *  this printout, error codes are replaced by their string equivalents.
    7884 *
     
    8692/** Prints error stack to specified open file descriptor
    8793 *
    88  *  The entire error stack may be printed to an open file descriptor by 
    89  *  calling psErrorStackPrintV; if and only if there are current errors, the 
    90  *  vprintf-style string fmt is first printed to the file descriptor fd. In 
     94 *  The entire error stack may be printed to an open file descriptor by
     95 *  calling psErrorStackPrintV; if and only if there are current errors, the
     96 *  vprintf-style string fmt is first printed to the file descriptor fd. In
    9197 *  this printout, error codes are replaced by their string equivalents.
    9298 *
  • trunk/psLib/src/types/psMetadata.h

    r2971 r2972  
    1111*  @author Ross Harman, MHPCC
    1212*
    13 *  @version $Revision: 1.31 $ $Name: not supported by cvs2svn $
    14 *  @date $Date: 2005-01-13 19:50:44 $
     13*  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
     14*  @date $Date: 2005-01-13 19:51:27 $
    1515*
    1616*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    220220 * @return psF32 : Value of metadata item.
    221221 */
    222 psF64 psMetadataLookupF32(
     222psF32 psMetadataLookupF32(
    223223    psMetadata *md,            ///< Metadata collection to lookup metadata item.
    224224    const char *key,           ///< Name of metadata key.
Note: See TracChangeset for help on using the changeset viewer.