Changeset 8232 for trunk/psLib/src/sys/psConfigure.c
- Timestamp:
- Aug 8, 2006, 1:32:23 PM (20 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
sys/psConfigure.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src
- Property svn:ignore
-
old new 10 10 libpslib.la.temp 11 11 config.h.in 12 psErrorText.h13 12 *.bb 14 13 *.bbg
-
- Property svn:ignore
-
trunk/psLib/src/sys/psConfigure.c
r7646 r8232 13 13 * @author Robert DeSonia, MHPCC 14 14 * 15 * @version $Revision: 1.1 3$ $Name: not supported by cvs2svn $16 * @date $Date: 2006-0 6-23 01:59:15$15 * @version $Revision: 1.14 $ $Name: not supported by cvs2svn $ 16 * @date $Date: 2006-08-08 23:32:23 $ 17 17 * 18 18 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 28 28 #include "psError.h" 29 29 #include "psConfigure.h" 30 #include "psErrorText.h" 30 31 31 #include "config.h" 32 32 … … 98 98 if (!p_psTimeInit(timeConfig)) { 99 99 psError(PS_ERR_BAD_PARAMETER_VALUE, true, 100 PS_ERRORTEXT_psConfigure_INITIALIZATION_FAILED, "psTime");100 _("Failed to initialize %s."), "psTime"); 101 101 return; 102 102 } … … 104 104 if (!p_psEOCInit()) { 105 105 psError(PS_ERR_BAD_PARAMETER_VALUE, true, 106 PS_ERRORTEXT_psConfigure_INITIALIZATION_FAILED, "psEOC");106 _("Failed to initialize %s."), "psEOC"); 107 107 return; 108 108 } … … 125 125 if (!p_psTimeFinalize()) { 126 126 psError(PS_ERR_UNKNOWN, false, 127 PS_ERRORTEXT_psConfigure_FINALIZATION_FAILED, "psTime");127 _("Failed to finalize %s."), "psTime"); 128 128 return; 129 129 } … … 132 132 if (!p_psEOCFinalize()) { 133 133 psError(PS_ERR_UNKNOWN, false, 134 PS_ERRORTEXT_psConfigure_FINALIZATION_FAILED, "psEOC");134 _("Failed to finalize %s."), "psEOC"); 135 135 return; 136 136 }
Note:
See TracChangeset
for help on using the changeset viewer.
