IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 9, 2004, 5:19:15 PM (22 years ago)
Author:
Paul Price
Message:

Doxygenation of Lupton stuff partially complete. Still need to hack some more to conform everything to coding standards.

File:
1 edited

Legend:

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

    r181 r196  
    22#define PS_TRACE_H 1
    33
    4 //#define PS_NTRACE 1                   /* to turn off all tracing */
     4//#define PS_NTRACE 1                   //!< to turn off all tracing
    55#if defined(PS_NTRACE)
    6 #  define psTrace(facil, level, ...) /* do nothing */
     6#  define psTrace(facil, level, ...)    /* do nothing */
    77#else
    88#  define psTrace(facil, level, ...) \
     
    1010#endif
    1111
     12/** Send a trace message */
    1213void p_psTrace(const char *facil, int level, ...);
    1314
    14 int psSetTraceLevel(const char *facil,  // facilty of interest
    15                     int level);         // desired trace level
    16 int psGetTraceLevel(const char *name);  // facilty of interest
     15/** Set trace level */
     16int psSetTraceLevel(const char *facil,  //!< facilty of interest
     17                    int level           //!< desired trace level
     18    );
    1719
    18 void psTraceReset(void);                // turn off all tracing, and free trace's allocated memory
     20/** Get the trace level */
     21int psGetTraceLevel(const char *name    //!< facilty of interest
     22    );
    1923
    20 void psPrintTraceLevels(void);          // print trace levels
     24/** turn off all tracing, and free trace's allocated memory */
     25void psTraceReset(void);
     26
     27/** print trace levels */
     28void psPrintTraceLevels(void);
    2129
    2230#endif
Note: See TracChangeset for help on using the changeset viewer.