Changeset 4316 for trunk/psLib/src/sys
- Timestamp:
- Jun 17, 2005, 5:13:02 PM (21 years ago)
- Location:
- trunk/psLib/src/sys
- Files:
-
- 2 edited
-
psLogMsg.c (modified) (2 diffs)
-
psLogMsg.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psLogMsg.c
r4183 r4316 12 12 * @author GLG, MHPCC 13 13 * 14 * @version $Revision: 1.4 4$ $Name: not supported by cvs2svn $15 * @date $Date: 2005-06- 09 06:13:14$14 * @version $Revision: 1.45 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2005-06-18 03:13:02 $ 16 16 * 17 17 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 363 363 NULL 364 364 *****************************************************************************/ 365 void psLogMsg(const char *name, psS32 level, const char *fmt, ...)365 void psLogMsg(const char *name, int level, const char *format, ...) 366 366 { 367 367 va_list ap; 368 368 369 va_start(ap, f mt);370 psLogMsgV(name, level, f mt, ap);369 va_start(ap, format); 370 psLogMsgV(name, level, format, ap); 371 371 va_end(ap); 372 372 } -
trunk/psLib/src/sys/psLogMsg.h
r4180 r4316 11 11 * @author GLG, MHPCC 12 12 * 13 * @version $Revision: 1.2 4$ $Name: not supported by cvs2svn $14 * @date $Date: 2005-06- 09 06:12:31$13 * @version $Revision: 1.25 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2005-06-18 03:13:02 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 67 67 void psLogMsg( 68 68 const char *name, ///< name of the log source 69 psS32 myLevel, ///< severity level of this log message70 const char *f mt, ///< printf-style format command69 int level, ///< severity level of this log message 70 const char *format, ///< printf-style format command 71 71 ... 72 72 );
Note:
See TracChangeset
for help on using the changeset viewer.
