Changeset 1138 for trunk/psLib/src/sysUtils
- Timestamp:
- Jun 29, 2004, 3:17:21 PM (22 years ago)
- Location:
- trunk/psLib/src/sysUtils
- Files:
-
- 5 edited
-
psAbort.c (modified) (2 diffs)
-
psError.c (modified) (2 diffs)
-
psLogMsg.c (modified) (3 diffs)
-
psLogMsg.h (modified) (2 diffs)
-
psTrace.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
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
Note:
See TracChangeset
for help on using the changeset viewer.
