IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 18, 2004, 9:37:58 PM (22 years ago)
Author:
eugene
Message:

code cleanup for Doxygen support & readability

File:
1 edited

Legend:

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

    r247 r257  
    77 */
    88
    9 //#define PS_NTRACE 1                   //!< to turn off all tracing
     9/** Functions **************************************************************/
     10/** \addtogroup SystemGroup System Utilities
     11 *  \{
     12 */
     13
     14/// Send a trace message
     15void p_psTrace(const char *facil,       ///< facilty of interest
     16               int level,               ///< desired trace level
     17               ...)                     ///< trace message arguments
     18;
     19
     20/// Set trace level
     21int psSetTraceLevel(const char *facil,  ///< facilty of interest
     22                    int level)          ///< desired trace level
     23;
     24
     25/// Get the trace level
     26int psGetTraceLevel(const char *name)   ///< facilty of interest
     27;
     28
     29/// turn off all tracing, and free trace's allocated memory
     30void psTraceReset(void);
     31
     32/// print trace levels
     33void psPrintTraceLevels(void);
     34
     35/* \} */ // End of SystemGroup Functions
     36
     37//#define PS_NTRACE 1                   ///< to turn off all tracing
    1038
    1139#if defined(PS_NTRACE)
     
    1644#endif
    1745
    18 /** Send a trace message */
    19 void p_psTrace(const char *facil,       //!< facilty of interest
    20                int level,               //!< desired trace level
    21                ...                      //!< trace message arguments
    22 );
    23 
    24 /** Set trace level */
    25 int psSetTraceLevel(const char *facil,  //!< facilty of interest
    26                     int level           //!< desired trace level
    27 );
    28 
    29 /** Get the trace level */
    30 int psGetTraceLevel(const char *name    //!< facilty of interest
    31 );
    32 
    33 /** turn off all tracing, and free trace's allocated memory */
    34 void psTraceReset(void);
    35 
    36 /** print trace levels */
    37 void psPrintTraceLevels(void);
    38 
    3946#endif
Note: See TracChangeset for help on using the changeset viewer.