IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4610


Ignore:
Timestamp:
Jul 25, 2005, 2:44:45 PM (21 years ago)
Author:
drobbin
Message:

made some doxygen comments and formatting updates

Location:
trunk/psLib/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sys/psTrace.h

    r4409 r4610  
    99 *  @author GLG, MHPCC
    1010 *
    11  *  @version $Revision: 1.34 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-06-28 20:17:52 $
     11 *  @version $Revision: 1.35 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-07-26 00:44:44 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5151        typedef struct p_psComponent
    5252        {
    53             const char *name;   // last part of name of component
    54             psS32 level;   // trace level for this component
    55             bool p_psSpecified;
    56             psS32 n;    // number of subcomponents
    57             struct p_psComponent* *subcomp;     // next level of subcomponents
     53            const char *name;                  ///< last part of name of component
     54            psS32 level;                       ///< trace level for this component
     55            bool p_psSpecified;                ///< whether the component is specified
     56            psS32 n;                           ///< number of subcomponents
     57            struct p_psComponent* *subcomp;    ///< next level of subcomponents
    5858        }
    5959p_psComponent;
    6060
     61/** Sends a trace message. */
    6162#ifdef DOXYGEN
    6263void psTrace(
     
    8081#endif /* DOXYGEN */
    8182
    82 /// Set trace level
     83/** Set trace level
     84 *
     85 *  @return psBool:       True if successful, otherwise false
     86 */
    8387psBool psTraceSetLevel(
    8488    const char *facil,                 ///< facilty of interest
     
    8690);
    8791
    88 /// Get the trace level
     92/** Get the trace level
     93 *
     94 *  @return int:    Trace Level
     95 */
    8996int psTraceGetLevel(
    9097    const char *facil                  ///< facilty of interest
     
    99106/// Set the destination of future trace messages.
    100107void psTraceSetDestination(
    101     FILE * fp                          ///<
     108    FILE * fp                          ///< Pointer to file
    102109);
    103110
    104 /// Get the current destination for trace messages.
     111/** Get the current destination for trace messages.
     112 *
     113 *  @return FILE*:      File Destination
     114 */
    105115FILE *psTraceGetDestination(void);
    106116
  • trunk/psLib/src/types/psBitSet.h

    r4556 r4610  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.21 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2005-07-15 02:33:54 $
     14 *  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2005-07-26 00:44:45 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5454 *  @return  psBitSet* : Pointer to struct containing array of bits and size of array.
    5555 */
    56 
    57 /*@null@*/
    5856psBitSet* psBitSetAlloc(
    5957    long nalloc                            ///< Number of bits in psBitSet array
     
    7068 */
    7169psBitSet* psBitSetSet(
    72     /* @returned@ */
    7370    psBitSet* bitSet,                  ///< Pointer to psBitSet to be set.
    7471    long bit                           ///< Bit to be set.
     
    9693 *  value of one, since that is the value that was set.
    9794 *
    98  *  @return  int: Value of bit, either one or zero.
     95 *  @return  bool:      True if successful, otherwise false
    9996 */
    10097
  • trunk/psLib/src/types/psMetadata.c

    r4590 r4610  
    1212*  @author Ross Harman, MHPCC
    1313*
    14 *  @version $Revision: 1.73 $ $Name: not supported by cvs2svn $
    15 *  @date $Date: 2005-07-21 02:39:57 $
     14*  @version $Revision: 1.74 $ $Name: not supported by cvs2svn $
     15*  @date $Date: 2005-07-26 00:44:45 $
    1616*
    1717*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
  • trunk/psLib/src/types/psMetadata.h

    r4590 r4610  
    1111*  @author Ross Harman, MHPCC
    1212*
    13 *  @version $Revision: 1.55 $ $Name: not supported by cvs2svn $
    14 *  @date $Date: 2005-07-21 02:39:57 $
     13*  @version $Revision: 1.56 $ $Name: not supported by cvs2svn $
     14*  @date $Date: 2005-07-26 00:44:45 $
    1515*
    1616*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    238238psMetadataItem* psMetadataItemAllocV(
    239239    const char *name,                  ///< Name of metadata item.
    240     psDataType type,               ///< Type of metadata item.
     240    psDataType type,                   ///< Type of metadata item.
    241241    const char *comment,               ///< Comment for metadata item.
    242242    va_list list                       ///< Arguments for name formatting and metadata item data.
     
    329329bool psMetadataAddF64(
    330330    psMetadata* md,                    ///< Metadata collection to insert metadata item
    331     long location,                    ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
     331    long location,                     ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
    332332    const char* name,                  ///< Name of metadata item
    333333    const char* comment,               ///< Comment for metadata item
     
    401401psBool psMetadataAddHash(
    402402    psMetadata* md,                    ///< Metadata collection to insert metadata item
    403     long location,                    ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
     403    long location,                     ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
    404404    const char* name,                  ///< Name of metadata item
    405405    const char* comment,               ///< Comment for metadata item
     
    551551psMetadataItem* psMetadataGet(
    552552    const psMetadata* md,              ///< Metadata collection to retrieve metadata item.
    553     int location                      ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
     553    int location                       ///< Index number, PS_LIST_HEAD, or PS_LIST_TAIL
    554554);
    555555
Note: See TracChangeset for help on using the changeset viewer.