IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 5, 2004, 9:38:52 AM (22 years ago)
Author:
desonia
Message:

Misc. doxygen polishings.

File:
1 edited

Legend:

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

    r1385 r1393  
    99 *  @author George Gusciora, MHPCC
    1010 *
    11  *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2004-08-04 23:37:39 $
     11 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2004-08-05 19:38:52 $
    1313 *
    1414 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    9292{
    9393    if (p_psCroot == NULL) {
    94         p_psCroot = componentAlloc(".", DEFAULT_TRACE_LEVEL);
     94        p_psCroot = componentAlloc(".", PS_DEFAULT_TRACE_LEVEL);
    9595    }
    9696}
     
    248248
    249249    if (NULL == currentNode) {
    250         return(UNKNOWN_TRACE_LEVEL);
     250        return(PS_UNKNOWN_TRACE_LEVEL);
    251251    }
    252252
     
    256256
    257257    if (aname[0] != '.') {
    258         return(UNKNOWN_TRACE_LEVEL);
     258        return(PS_UNKNOWN_TRACE_LEVEL);
    259259    }
    260260
     
    278278        }
    279279    }
    280     return(UNKNOWN_TRACE_LEVEL);
     280    return(PS_UNKNOWN_TRACE_LEVEL);
    281281}
    282282
     
    297297{
    298298    if (p_psCroot == NULL) {
    299         return(UNKNOWN_TRACE_LEVEL);
     299        return(PS_UNKNOWN_TRACE_LEVEL);
    300300    }
    301301
     
    324324    if (comp->name[0] == '\0') {
    325325        printf("%*s%-*s %d\n", depth, "", 20 - depth,
    326                "(root)", (comp->level == UNKNOWN_TRACE_LEVEL) ? 0 : comp->level);
     326               "(root)", (comp->level == PS_UNKNOWN_TRACE_LEVEL) ? 0 : comp->level);
    327327    } else {
    328         if (comp->level == UNKNOWN_TRACE_LEVEL) {
     328        if (comp->level == PS_UNKNOWN_TRACE_LEVEL) {
    329329            printf("%*s%-*s %s\n", depth, "", 20 - depth,
    330330                   comp->name, ".");
Note: See TracChangeset for help on using the changeset viewer.