Changeset 2855 for trunk/psLib/src/collections
- Timestamp:
- Dec 30, 2004, 10:18:37 AM (22 years ago)
- Location:
- trunk/psLib/src/collections
- Files:
-
- 3 edited
-
psArray.c (modified) (2 diffs)
-
psCollectionsErrors.dat (modified) (2 diffs)
-
psCollectionsErrors.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psArray.c
r2836 r2855 9 9 * @author Ross Harman, MHPCC 10 10 * 11 * @version $Revision: 1.2 1$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-12- 28 01:48:05$11 * @version $Revision: 1.22 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-12-30 20:18:36 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 114 114 psBool success = false; 115 115 116 if (psArr == NULL) { 117 psError(PS_ERR_BAD_PARAMETER_NULL, true, 118 PS_ERRORTEXT_psArray_ARRAY_NULL); 119 return false; 120 } 116 121 117 122 psS32 n = psArr->n; -
trunk/psLib/src/collections/psCollectionsErrors.dat
r2681 r2855 9 9 # 10 10 psArray_REALLOC_NULL psArrayRealloc must be given a non-NULL psArray to resize. 11 psArray_ARRAY_NULL Specified psArray can not be NULL. 11 12 # 12 13 psVector_REALLOC_NULL psVectorRealloc must a given a non-NULL psVector to resize. Desired datatype unknown. … … 36 37 psList_ITERATOR_INVALID Specified iterator is not valid. 37 38 psList_ITERATOR_NULL Specified iterator is NULL. 38 psList_LIST_NULL Specified psList reference is NULL. 39 psList_LIST_NULL Specified psList reference is NULL. 39 40 psList_DATA_NULL Specified data item is NULL. 40 41 psList_DATA_NOT_FOUND Specified data item is not found in the psList. -
trunk/psLib/src/collections/psCollectionsErrors.h
r2681 r2855 7 7 * @author Robert DeSonia, MHPCC 8 8 * 9 * @version $Revision: 1. 7$ $Name: not supported by cvs2svn $10 * @date $Date: 2004-12- 10 02:50:14$9 * @version $Revision: 1.8 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2004-12-30 20:18:36 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 31 31 //~Start #define PS_ERRORTEXT_$1 "$2" 32 32 #define PS_ERRORTEXT_psArray_REALLOC_NULL "psArrayRealloc must be given a non-NULL psArray to resize." 33 #define PS_ERRORTEXT_psArray_ARRAY_NULL "Specified psArray can not be NULL." 33 34 #define PS_ERRORTEXT_psVector_REALLOC_NULL "psVectorRealloc must a given a non-NULL psVector to resize. Desired datatype unknown." 34 35 #define PS_ERRORTEXT_psVector_NOT_A_VECTOR "The input psVector must have a vector dimension type." … … 53 54 #define PS_ERRORTEXT_psList_ITERATOR_INVALID "Specified iterator is not valid." 54 55 #define PS_ERRORTEXT_psList_ITERATOR_NULL "Specified iterator is NULL." 55 #define PS_ERRORTEXT_psList_LIST_NULL "Specified psList reference is NULL. "56 #define PS_ERRORTEXT_psList_LIST_NULL "Specified psList reference is NULL." 56 57 #define PS_ERRORTEXT_psList_DATA_NULL "Specified data item is NULL." 57 58 #define PS_ERRORTEXT_psList_DATA_NOT_FOUND "Specified data item is not found in the psList."
Note:
See TracChangeset
for help on using the changeset viewer.
