Changeset 15384
- Timestamp:
- Oct 25, 2007, 4:40:24 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sys/psLogMsg.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psLogMsg.c
r11668 r15384 11 11 * @author GLG, MHPCC 12 12 * 13 * @version $Revision: 1.6 6$ $Name: not supported by cvs2svn $14 * @date $Date: 2007- 02-06 21:36:09$13 * @version $Revision: 1.67 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2007-10-26 02:40:24 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 116 116 included in message logs. It does not determine the order in which that 117 117 information will appear (that order is fixed). 118 118 119 119 Input: 120 120 fmt: a string specifying the format. … … 189 189 // Special destinations: stdout, stderr 190 190 if (strcasecmp(dest, "stdout") == 0) { 191 logFD = STDOUT_FILENO;192 191 return STDOUT_FILENO; 193 192 } 194 193 if (strcasecmp(dest, "stderr") == 0) { 195 logFD = STDERR_FILENO;196 194 return STDERR_FILENO; 197 195 } … … 218 216 } 219 217 psFree(protocolLocation); 220 logFD = fileD;221 218 return fileD; 222 219 } … … 376 373 specified in the "..." argument, to the current message log destination with 377 374 the severity specified by the "level" argument. 378 375 379 376 Input: 380 377 name: Indicates the source of this log message. … … 383 380 to that string. 384 381 ... The arguments to the above printf-style string. 385 382 386 383 Return: 387 384 NULL
Note:
See TracChangeset
for help on using the changeset viewer.
