Changeset 4162 for trunk/psLib/src/collections/psList.h
- Timestamp:
- Jun 8, 2005, 1:40:46 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/psList.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psList.h
r3409 r4162 1 #if !defined(PS_LIST_H)2 #define PS_LIST_H3 4 1 /** @file psList.h 5 2 * @brief Support for doubly linked lists … … 10 7 * @ingroup LinkedList 11 8 * 12 * @version $Revision: 1.2 3$ $Name: not supported by cvs2svn $13 * @date $Date: 2005-0 3-11 23:17:46$9 * @version $Revision: 1.24 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-06-08 23:40:45 $ 14 11 * 15 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 16 13 */ 14 15 #ifndef PS_LIST_H 16 #define PS_LIST_H 17 17 18 18 #include <pthread.h> // we need a mutex to make this stuff thread safe. … … 210 210 /** Sort a list via a comparison function. 211 211 * 212 * The comparison function must return an integer less than, equal to, or 213 * greater than zero if the first argument is considered to be respectively 214 * less than, equal to, or greater than the second. 215 * 216 * If two members compare as equal, their order in the sorted array is 212 * The comparison function must return an integer less than, equal to, or 213 * greater than zero if the first argument is considered to be respectively 214 * less than, equal to, or greater than the second. 215 * 216 * If two members compare as equal, their order in the sorted array is 217 217 * undefined. 218 218 * … … 226 226 /// @} End of DataGroup Functions 227 227 228 #endif 228 #endif // #ifndef PS_LIST_H 229
Note:
See TracChangeset
for help on using the changeset viewer.
