IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 370


Ignore:
Timestamp:
Mar 31, 2004, 11:58:05 PM (22 years ago)
Author:
eugene
Message:

minor name & doxygen edits

File:
1 edited

Legend:

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

    r290 r370  
    1414/// Send a trace message
    1515void p_psTrace(const char *facil,       ///< facilty of interest
    16                int level,               ///< desired trace level
    17                ...                      ///< trace message arguments
    18     );
     16               int myLevel,             ///< desired trace level
     17               ...)                     ///< trace message arguments
     18;
    1919
    2020/// Set trace level
    2121int psSetTraceLevel(const char *facil,  ///< facilty of interest
    22                     int level           ///< desired trace level
    23     );
     22                    int level)          ///< desired trace level
     23;
    2424
    2525/// Get the trace level
    26 int psGetTraceLevel(const char *name    ///< facilty of interest
    27     );
     26int psGetTraceLevel(const char *facil)  ///< facilty of interest
     27;
    2828
    2929/// turn off all tracing, and free trace's allocated memory
    30 void psTraceReset(void);
     30void psTraceReset(void)
     31;
    3132
    3233/// print trace levels
    33 void psPrintTraceLevels(void);
     34void psPrintTraceLevels(void)
     35;
    3436
    3537/* \} */ // End of SystemGroup Functions
    3638
    37 //#define PS_NTRACE 1                   ///< to turn off all tracing
     39//#define PS_NO_TRACE 1                 ///< to turn off all tracing
    3840
    39 #if defined(PS_NTRACE)
     41#if defined(PS_NO_TRACE)
    4042#  define psTrace(facil, level, ...)    /* do nothing */
    4143#else
Note: See TracChangeset for help on using the changeset viewer.