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.

Location:
trunk/psLib/src/sysUtils
Files:
1 deleted
3 edited

Legend:

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

    r1385 r1393  
    1111 *  @author George Gusciora, MHPCC
    1212 *
    13  *  @version $Revision: 1.21 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2004-08-04 23:37:39 $
     13 *  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2004-08-05 19:38:52 $
    1515 *
    1616 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3838#include "psLogMsg.h"
    3939#include "psError.h"
    40 #include "psErrorCodes.h"
    4140#include "psTrace.h"
    4241
  • trunk/psLib/src/sysUtils/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, ".");
  • trunk/psLib/src/sysUtils/psTrace.h

    r1137 r1393  
    99 *  @author George Gusciora, MHPCC
    1010 *
    11  *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2004-06-30 01:09:12 $
     11 *  @version $Revision: 1.11 $ $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
     
    1717#define PS_TRACE_H 1
    1818
    19 #define UNKNOWN_TRACE_LEVEL -9999         // we don't know this name's level
    20 #define DEFAULT_TRACE_LEVEL 0
     19#define PS_UNKNOWN_TRACE_LEVEL -9999         // we don't know this name's level
     20#define PS_DEFAULT_TRACE_LEVEL 0
    2121
    2222
Note: See TracChangeset for help on using the changeset viewer.