Changeset 11686 for trunk/psLib/src/sys/psAbort.c
- Timestamp:
- Feb 7, 2007, 1:52:54 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sys/psAbort.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psAbort.c
r10999 r11686 9 9 * 10 10 * @author Eric Van Alst, MHPCC 11 * @author Joshua Hoblitt, University of Hawaii 11 12 * 12 * @version $Revision: 1.1 4$ $Name: not supported by cvs2svn $13 * @date $Date: 2007-0 1-09 22:38:53$13 * @version $Revision: 1.15 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2007-02-07 23:52:54 $ 14 15 * 15 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 22 23 #include <stdarg.h> 23 24 #include <stdlib.h> 25 24 26 #include "psAbort.h" 25 27 #include "psError.h" 26 28 #include "psLogMsg.h" 27 29 28 void psAbort(const char *name, const char *format, ...) 30 void p_psAbort(const char *file, 31 unsigned int lineno, 32 const char *func, 33 const char *format, 34 ...) 29 35 { 30 36 psErrorStackPrint(stderr, "Aborting. Error stack:"); … … 35 41 36 42 // Call logging function with PS_LOG_ABORT level 37 psLogMsgV( name, PS_LOG_ABORT, format, argPtr);43 psLogMsgV("psLib.sys", PS_LOG_ABORT, format, argPtr); 38 44 39 45 // Clean up stack after variable arguement has been used
Note:
See TracChangeset
for help on using the changeset viewer.
