IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

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

made some doxygen comments and formatting updates

File:
1 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
Note: See TracChangeset for help on using the changeset viewer.