Changeset 912 for trunk/psLib/src/collections/psDlist.h
- Timestamp:
- Jun 7, 2004, 4:18:15 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/psDlist.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psDlist.h
r886 r912 9 9 * @author Robert Daniel DeSonia, MHPCC 10 10 * 11 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-06-0 5 19:12:51$11 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-06-08 02:18:15 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 16 16 17 17 #include <pthread.h> // we need a mutex to make this stuff thread safe. 18 19 #include "psVector.h" 18 20 19 21 /** Special values of index into list … … 79 81 /** Append to a list */ 80 82 psDlist* psDlistAppend( 81 psDlist* restrict list, ///< list to append to (may be NULL)83 psDlist* restrict list, ///< list to append to (may be NULL) 82 84 void *data ///< data item to add 83 85 ); … … 118 120 119 121 /** Convert doubly-linked list to an array */ 120 #if 0 121 psVoidPtrArray *psDlistToArray( 122 psVector* psDlistToVector( 122 123 psDlist *dlist ///< List to convert 123 124 ); 124 125 125 126 /** Convert array to a doubly-linked list */ 126 psDlist *psArrayToDlist(127 psV oidPtrArray *arr ///< Arrayto convert127 psDlist* psVectorToDlist( 128 psVector* arr ///< vector to convert 128 129 ); 129 #endif130 130 131 131 /// @} End of DataGroup Functions
Note:
See TracChangeset
for help on using the changeset viewer.
