Changeset 1138
- Timestamp:
- Jun 29, 2004, 3:17:21 PM (22 years ago)
- Location:
- trunk/psLib
- Files:
-
- 12 edited
-
src/sys/psAbort.c (modified) (2 diffs)
-
src/sys/psError.c (modified) (2 diffs)
-
src/sys/psLogMsg.c (modified) (3 diffs)
-
src/sys/psLogMsg.h (modified) (2 diffs)
-
src/sysUtils/psAbort.c (modified) (2 diffs)
-
src/sysUtils/psError.c (modified) (2 diffs)
-
src/sysUtils/psLogMsg.c (modified) (3 diffs)
-
src/sysUtils/psLogMsg.h (modified) (2 diffs)
-
src/sysUtils/psTrace.d (modified) (1 diff)
-
test/dataManip/Makefile (modified) (2 diffs)
-
test/sysUtils/builddir/tst_psLogMsg00.d (modified) (1 diff)
-
test/sysUtils/tst_psLogMsg00.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psAbort.c
r525 r1138 9 9 * @author Eric Van Alst, MHPCC 10 10 * 11 * @version $Revision: 1. 4$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-0 4-27 02:17:53$11 * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-06-30 01:17:20 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 65 65 66 66 // Call logging function with PS_LOG_ABORT level 67 ps VLogMsg(name, PS_LOG_ABORT, fmt, argPtr);67 psLogMsgV(name, PS_LOG_ABORT, fmt, argPtr); 68 68 69 69 // Clean up stack after variable arguement has been used -
trunk/psLib/src/sys/psError.c
r497 r1138 10 10 * @author Eric Van Alst, MHPCC 11 11 * 12 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-0 4-21 21:14:41$12 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-06-30 01:17:20 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 65 65 66 66 // Call logging function with PS_LOG_ERROR level 67 ps VLogMsg(name, PS_LOG_ERROR, fmt, argPtr);67 psLogMsgV(name, PS_LOG_ERROR, fmt, argPtr); 68 68 69 69 // Clean up stack after variable argument has been used -
trunk/psLib/src/sys/psLogMsg.c
r1022 r1138 11 11 * @author George Gusciora, MHPCC 12 12 * 13 * @version $Revision: 1.1 6$ $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 $ 15 15 * 16 16 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 191 191 NULL. 192 192 *****************************************************************************/ 193 void ps VLogMsg(const char *name,193 void psLogMsgV(const char *name, 194 194 int level, 195 195 const char *fmt, … … 341 341 342 342 va_start(ap, fmt); 343 ps VLogMsg(name, level, fmt, ap);343 psLogMsgV(name, level, fmt, ap); 344 344 va_end(ap); 345 345 } -
trunk/psLib/src/sys/psLogMsg.h
r1013 r1138 11 11 * @author George Gusciora, MHPCC 12 12 * 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 $ 15 15 * 16 16 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 63 63 /// This procedure is functionally equivalent to psLogMsg(), except that 64 64 /// it takes a va_list as the message parameter, not a printf-style string. 65 void ps VLogMsg(const char *name, ///< name of the log source65 void psLogMsgV(const char *name, ///< name of the log source 66 66 int myLevel, ///< severity level of this log message 67 67 const char *fmt, ///< printf-style format command -
trunk/psLib/src/sysUtils/psAbort.c
r525 r1138 9 9 * @author Eric Van Alst, MHPCC 10 10 * 11 * @version $Revision: 1. 4$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-0 4-27 02:17:53$11 * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-06-30 01:17:20 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 65 65 66 66 // Call logging function with PS_LOG_ABORT level 67 ps VLogMsg(name, PS_LOG_ABORT, fmt, argPtr);67 psLogMsgV(name, PS_LOG_ABORT, fmt, argPtr); 68 68 69 69 // Clean up stack after variable arguement has been used -
trunk/psLib/src/sysUtils/psError.c
r497 r1138 10 10 * @author Eric Van Alst, MHPCC 11 11 * 12 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-0 4-21 21:14:41$12 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-06-30 01:17:20 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 65 65 66 66 // Call logging function with PS_LOG_ERROR level 67 ps VLogMsg(name, PS_LOG_ERROR, fmt, argPtr);67 psLogMsgV(name, PS_LOG_ERROR, fmt, argPtr); 68 68 69 69 // Clean up stack after variable argument has been used -
trunk/psLib/src/sysUtils/psLogMsg.c
r1022 r1138 11 11 * @author George Gusciora, MHPCC 12 12 * 13 * @version $Revision: 1.1 6$ $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 $ 15 15 * 16 16 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 191 191 NULL. 192 192 *****************************************************************************/ 193 void ps VLogMsg(const char *name,193 void psLogMsgV(const char *name, 194 194 int level, 195 195 const char *fmt, … … 341 341 342 342 va_start(ap, fmt); 343 ps VLogMsg(name, level, fmt, ap);343 psLogMsgV(name, level, fmt, ap); 344 344 va_end(ap); 345 345 } -
trunk/psLib/src/sysUtils/psLogMsg.h
r1013 r1138 11 11 * @author George Gusciora, MHPCC 12 12 * 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 $ 15 15 * 16 16 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 63 63 /// This procedure is functionally equivalent to psLogMsg(), except that 64 64 /// it takes a va_list as the message parameter, not a printf-style string. 65 void ps VLogMsg(const char *name, ///< name of the log source65 void psLogMsgV(const char *name, ///< name of the log source 66 66 int myLevel, ///< severity level of this log message 67 67 const char *fmt, ///< printf-style format command -
trunk/psLib/src/sysUtils/psTrace.d
r1137 r1138 1 psTrace.o psTrace.d : psTrace.c 1 psTrace.o psTrace.d : psTrace.c psMemory.h psTrace.h psString.h psError.h -
trunk/psLib/test/dataManip/Makefile
r1134 r1138 3 3 ## Makefile: test/sysUtils 4 4 ## 5 ## $Revision: 1.2 2$ $Name: not supported by cvs2svn $6 ## $Date: 2004-06-30 0 0:18:49$5 ## $Revision: 1.23 $ $Name: not supported by cvs2svn $ 6 ## $Date: 2004-06-30 01:17:20 $ 7 7 ## 8 8 ## Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 47 47 tst_psImageStats02 \ 48 48 tst_psImageStats03 \ 49 tst_psMinimize00 \50 49 tst_psImageIO \ 51 50 tst_psVectorFFT \ 52 tst_psImageFFT 51 tst_psImageFFT 52 # tst_psMinimize00 53 53 54 54 DEPENDENCIES = $(addprefix builddir/,$(addsuffix .d,$(TARGET))) -
trunk/psLib/test/sysUtils/builddir/tst_psLogMsg00.d
r1109 r1138 3 3 ../../include/psTrace.h ../../include/psAbort.h ../../include/psError.h \ 4 4 ../../include/psString.h ../../include/psType.h ../../include/psList.h \ 5 ../../include/ps Vector.h ../../include/psHash.h \6 ../../include/ps Scalar.h ../../include/psImage.h \5 ../../include/psCompare.h ../../include/psVector.h \ 6 ../../include/psHash.h ../../include/psScalar.h ../../include/psImage.h \ 7 7 ../../include/psBitSet.h ../../include/psSort.h ../../include/psStats.h \ 8 8 ../../include/psMatrix.h ../../include/psMatrixVectorArithmetic.h \ -
trunk/psLib/test/sysUtils/tst_psLogMsg00.c
r1096 r1138 15 15 va_list ap; 16 16 17 // Test whether ps VLogMsg() accept a va_list for output variables.17 // Test whether psLogMsgV() accept a va_list for output variables. 18 18 va_start(ap, fmt); 19 ps VLogMsg(name, level, fmt, ap);19 psLogMsgV(name, level, fmt, ap); 20 20 va_end(ap); 21 21 } … … 44 44 45 45 46 // Test whether ps VLogMsg() accept a va_list for output variables.46 // Test whether psLogMsgV() accept a va_list for output variables. 47 47 printPositiveTestHeader(stdout, 48 48 "psLogMsg functions",
Note:
See TracChangeset
for help on using the changeset viewer.
