IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 15, 2004, 3:20:03 PM (22 years ago)
Author:
eugene
Message:

added Doxygen \file and \defgroup entries
some basic reorganization

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psTrace.h

    r196 r247  
    22#define PS_TRACE_H 1
    33
     4/** \file psTrace.h
     5 *  \brief basic run-time trace facilities
     6 *  \ingroup SystemGroup
     7 */
     8
    49//#define PS_NTRACE 1                   //!< to turn off all tracing
     10
    511#if defined(PS_NTRACE)
    612#  define psTrace(facil, level, ...)    /* do nothing */
     
    1117
    1218/** Send a trace message */
    13 void p_psTrace(const char *facil, int level, ...);
     19void p_psTrace(const char *facil,       //!< facilty of interest
     20               int level,               //!< desired trace level
     21               ...                      //!< trace message arguments
     22);
    1423
    1524/** Set trace level */
    1625int psSetTraceLevel(const char *facil,  //!< facilty of interest
    1726                    int level           //!< desired trace level
    18     );
     27);
    1928
    2029/** Get the trace level */
    2130int psGetTraceLevel(const char *name    //!< facilty of interest
    22     );
     31);
    2332
    2433/** turn off all tracing, and free trace's allocated memory */
Note: See TracChangeset for help on using the changeset viewer.