Changeset 9543
- Timestamp:
- Oct 13, 2006, 12:25:45 PM (20 years ago)
- Location:
- trunk/psLib/src/types
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/types/psArray.c
r9538 r9543 9 9 * @author Ross Harman, MHPCC 10 10 * 11 * @version $Revision: 1.5 5$ $Name: not supported by cvs2svn $12 * @date $Date: 2006-10-13 2 1:13:48$11 * @version $Revision: 1.56 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2006-10-13 22:24:29 $ 13 13 * 14 14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 157 157 } 158 158 159 bool psArrayRemove ByIndex(psArray* array,160 long index)159 bool psArrayRemoveIndex(psArray* array, 160 long index) 161 161 { 162 162 PS_ASSERT_PTR_NON_NULL(array, false); -
trunk/psLib/src/types/psArray.h
r9538 r9543 11 11 * @author Ross Harman, MHPCC 12 12 * 13 * @version $Revision: 1.4 1$ $Name: not supported by cvs2svn $14 * @date $Date: 2006-10-13 2 1:13:48$13 * @version $Revision: 1.42 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2006-10-13 22:24:29 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 118 118 * 119 119 */ 120 bool psArrayRemove ByIndex(120 bool psArrayRemoveIndex( 121 121 psArray* array, ///< array to operate on 122 122 long index ///< the element to remove -
trunk/psLib/src/types/psMetadataConfig.c
r9538 r9543 10 10 * @author Eric Van Alst, MHPCC 11 11 * 12 * @version $Revision: 1.9 3$ $Name: not supported by cvs2svn $13 * @date $Date: 2006-10-13 2 1:13:48$12 * @version $Revision: 1.94 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2006-10-13 22:25:45 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 1118 1118 } else { 1119 1119 // Remove lower info level 1120 if(!psArrayRemove ByIndex(levelArray, *level)) {1120 if(!psArrayRemoveIndex(levelArray, *level)) { 1121 1121 psFree(keyName); 1122 1122 return false;
Note:
See TracChangeset
for help on using the changeset viewer.
