IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 8, 2004, 9:51:39 AM (22 years ago)
Author:
desonia
Message:

fixed some function names to match SDRS.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sysUtils/psTrace.c

    r885 r928  
    195195 zero
    196196*****************************************************************************/
    197 int psSetTraceLevel(const char *comp,   // component of interest
     197int psTraceSetLevel(const char *comp,   // component of interest
    198198                    int level)          // desired trace level
    199199{
     
    219219 
    220220    Inputs:
    221  name: 
     221 name:
    222222    Outputs:
    223223 none
     
    280280 The level of "name" in the root component tree.
    281281 *****************************************************************************/
    282 int psGetTraceLevel(const char *name)
     282int psTraceGetLevel(const char *name)
    283283{
    284284    if (croot == NULL) {
     
    337337 null
    338338*****************************************************************************/
    339 void psPrintTraceLevels(void)
     339void psTracePrintLevels(void)
    340340{
    341341    if (croot == NULL) {
     
    376376    // Only display this message if it's trace level is less than the level
    377377    // of it's associatedcomponent.
    378     if (level <= psGetTraceLevel(comp)) {
     378    if (level <= psTraceGetLevel(comp)) {
    379379        va_start(ap, level);
    380380
Note: See TracChangeset for help on using the changeset viewer.