IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 29, 2004, 3:17:21 PM (22 years ago)
Author:
desonia
Message:

Renamed psVLogMsg to psLobMsgV

Location:
trunk/psLib/src/sysUtils
Files:
5 edited

Legend:

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

    r525 r1138  
    99 *  @author Eric Van Alst, MHPCC
    1010 *   
    11  *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2004-04-27 02:17:53 $
     11 *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2004-06-30 01:17:20 $
    1313 *
    1414 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    6565
    6666    // Call logging function with PS_LOG_ABORT level
    67     psVLogMsg(name, PS_LOG_ABORT, fmt, argPtr);
     67    psLogMsgV(name, PS_LOG_ABORT, fmt, argPtr);
    6868
    6969    // Clean up stack after variable arguement has been used
  • trunk/psLib/src/sysUtils/psError.c

    r497 r1138  
    1010 *  @author Eric Van Alst, MHPCC
    1111 *   
    12  *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-04-21 21:14:41 $
     12 *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-06-30 01:17:20 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    6565
    6666    // Call logging function with PS_LOG_ERROR level
    67     psVLogMsg(name, PS_LOG_ERROR, fmt, argPtr);
     67    psLogMsgV(name, PS_LOG_ERROR, fmt, argPtr);
    6868
    6969    // Clean up stack after variable argument has been used
  • trunk/psLib/src/sysUtils/psLogMsg.c

    r1022 r1138  
    1111 *  @author George Gusciora, MHPCC
    1212 *
    13  *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2004-06-14 19:40:15 $
     13 *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2004-06-30 01:17:20 $
    1515 *
    1616 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    191191 NULL.
    192192 *****************************************************************************/
    193 void psVLogMsg(const char *name,
     193void psLogMsgV(const char *name,
    194194               int level,
    195195               const char *fmt,
     
    341341
    342342    va_start(ap, fmt);
    343     psVLogMsg(name, level, fmt, ap);
     343    psLogMsgV(name, level, fmt, ap);
    344344    va_end(ap);
    345345}
  • trunk/psLib/src/sysUtils/psLogMsg.h

    r1013 r1138  
    1111 *  @author George Gusciora, MHPCC
    1212 *
    13  *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2004-06-12 05:50:01 $
     13 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2004-06-30 01:17:20 $
    1515 *
    1616 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    6363/// This procedure is functionally equivalent to psLogMsg(), except that
    6464/// it takes a va_list as the message parameter, not a printf-style string.
    65 void psVLogMsg(const char *name, ///< name of the log source
     65void psLogMsgV(const char *name, ///< name of the log source
    6666               int myLevel,      ///< severity level of this log message
    6767               const char *fmt,  ///< printf-style format command
  • trunk/psLib/src/sysUtils/psTrace.d

    r1137 r1138  
    1 psTrace.o psTrace.d : psTrace.c
     1psTrace.o psTrace.d : psTrace.c psMemory.h psTrace.h psString.h psError.h
Note: See TracChangeset for help on using the changeset viewer.