IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 1138


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

Renamed psVLogMsg to psLobMsgV

Location:
trunk/psLib
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sys/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/sys/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/sys/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/sys/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/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
  • trunk/psLib/test/dataManip/Makefile

    r1134 r1138  
    33##  Makefile:   test/sysUtils
    44##
    5 ##  $Revision: 1.22 $  $Name: not supported by cvs2svn $
    6 ##  $Date: 2004-06-30 00:18:49 $
     5##  $Revision: 1.23 $  $Name: not supported by cvs2svn $
     6##  $Date: 2004-06-30 01:17:20 $
    77##
    88##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    4747 tst_psImageStats02 \
    4848 tst_psImageStats03 \
    49  tst_psMinimize00 \
    5049 tst_psImageIO \
    5150 tst_psVectorFFT \
    52  tst_psImageFFT
     51 tst_psImageFFT
     52# tst_psMinimize00
    5353
    5454DEPENDENCIES = $(addprefix builddir/,$(addsuffix .d,$(TARGET)))
  • trunk/psLib/test/sysUtils/builddir/tst_psLogMsg00.d

    r1109 r1138  
    33  ../../include/psTrace.h ../../include/psAbort.h ../../include/psError.h \
    44  ../../include/psString.h ../../include/psType.h ../../include/psList.h \
    5   ../../include/psVector.h ../../include/psHash.h \
    6   ../../include/psScalar.h ../../include/psImage.h \
     5  ../../include/psCompare.h ../../include/psVector.h \
     6  ../../include/psHash.h ../../include/psScalar.h ../../include/psImage.h \
    77  ../../include/psBitSet.h ../../include/psSort.h ../../include/psStats.h \
    88  ../../include/psMatrix.h ../../include/psMatrixVectorArithmetic.h \
  • trunk/psLib/test/sysUtils/tst_psLogMsg00.c

    r1096 r1138  
    1515    va_list ap;
    1616
    17     // Test whether psVLogMsg() accept a va_list for output variables.
     17    // Test whether psLogMsgV() accept a va_list for output variables.
    1818    va_start(ap, fmt);
    19     psVLogMsg(name, level, fmt, ap);
     19    psLogMsgV(name, level, fmt, ap);
    2020    va_end(ap);
    2121}
     
    4444
    4545
    46     // Test whether psVLogMsg() accept a va_list for output variables.
     46    // Test whether psLogMsgV() accept a va_list for output variables.
    4747    printPositiveTestHeader(stdout,
    4848                            "psLogMsg functions",
Note: See TracChangeset for help on using the changeset viewer.