Changeset 2204 for trunk/psLib/src/sys/psLogMsg.h
- Timestamp:
- Oct 26, 2004, 2:57:34 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sys/psLogMsg.h (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psLogMsg.h
r1807 r2204 11 11 * @author George Gusciora, MHPCC 12 12 * 13 * @version $Revision: 1.1 8$ $Name: not supported by cvs2svn $14 * @date $Date: 2004- 09-14 20:01:52$13 * @version $Revision: 1.19 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2004-10-27 00:57:31 $ 15 15 * 16 16 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 19 19 #define PS_LOG_MSG_H 20 20 #include <stdarg.h> 21 #include <stdbool.h> 21 22 #include "psType.h" 22 23 23 24 /** @addtogroup LogTrace … … 31 32 * argument which can specify more general log destinations. 32 33 * 33 * @return inttrue if set successfully, otherwise false.34 * @return psS32 true if set successfully, otherwise false. 34 35 */ 35 bool psLogSetDestination(36 psBool psLogSetDestination( 36 37 const char *dest ///< Specifies where to send messages. 37 38 ); … … 43 44 * be displayed. 44 45 * 45 * @return intold logging level46 * @return psS32 old logging level 46 47 */ 47 intpsLogSetLevel(48 intlevel ///< Specifies the system log level48 psS32 psLogSetLevel( 49 psS32 level ///< Specifies the system log level 49 50 ); 50 51 … … 68 69 void psLogMsg( 69 70 const char *name, ///< name of the log source 70 intmyLevel, ///< severity level of this log message71 psS32 myLevel, ///< severity level of this log message 71 72 const char *fmt, ///< printf-style format command 72 73 ... … … 79 80 void psLogMsgV( 80 81 const char *name, ///< name of the log source 81 intmyLevel, ///< severity level of this log message82 psS32 myLevel, ///< severity level of this log message 82 83 const char *fmt, ///< printf-style format command 83 84 va_list ap ///< varargs argument list
Note:
See TracChangeset
for help on using the changeset viewer.
