Changeset 919
- Timestamp:
- Jun 8, 2004, 9:08:40 AM (22 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 4 added
- 2 deleted
- 4 edited
-
collections/Makefile (modified) (2 diffs)
-
collections/psDlist.c (deleted)
-
collections/psDlist.h (deleted)
-
collections/psList.c (added)
-
collections/psList.h (added)
-
pslib.h (modified) (2 diffs)
-
sysUtils/psHash.c (modified) (3 diffs)
-
sysUtils/psHash.h (modified) (3 diffs)
-
types/psList.c (added)
-
types/psList.h (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/Makefile
r874 r919 3 3 ## Makefile: collections 4 4 ## 5 ## $Revision: 1.1 8$ $Name: not supported by cvs2svn $6 ## $Date: 2004-06-0 4 23:44:36$5 ## $Revision: 1.19 $ $Name: not supported by cvs2svn $ 6 ## $Date: 2004-06-08 19:08:40 $ 7 7 ## 8 8 ## Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 34 34 psSort.o \ 35 35 psImage.o \ 36 ps Dlist.o36 psList.o 37 37 38 38 # Define PHONY target "all" which will make all the necessary items -
trunk/psLib/src/pslib.h
r874 r919 8 8 * @author Eric Van Alst, MHPCC 9 9 * 10 * @version $Revision: 1. 5$ $Name: not supported by cvs2svn $11 * @date $Date: 2004-06-0 4 23:45:22$10 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2004-06-08 19:08:40 $ 12 12 * 13 13 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 36 36 #include "psSort.h" 37 37 #include "psHash.h" 38 #include "ps Dlist.h"38 #include "psList.h" 39 39 40 40 // Data Manipulation -
trunk/psLib/src/sysUtils/psHash.c
r889 r919 10 10 * @author George Gusciora, MHPCC 11 11 * 12 * @version $Revision: 1. 6$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-06-0 7 00:32:53$12 * @version $Revision: 1.7 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-06-08 19:08:40 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 25 25 #include "psAbort.h" 26 26 27 ps Dlist *psHashKeyList(psHash *table)27 psList *psHashKeyList(psHash *table) 28 28 { 29 29 int i = 0; 30 ps Dlist *myLinkList = NULL;30 psList *myLinkList = NULL; 31 31 32 32 if (table == NULL) { … … 34 34 } 35 35 36 myLinkList = ps DlistAlloc(NULL);36 myLinkList = psListAlloc(NULL); 37 37 38 38 for (i=0;i<table->nbucket;i++) { 39 39 if (table->buckets[i] != NULL) { 40 ps DlistAdd(myLinkList, (table->buckets[i])->key, PS_DLIST_HEAD);40 psListAdd(myLinkList, (table->buckets[i])->key, PS_LIST_HEAD); 41 41 } 42 42 } -
trunk/psLib/src/sysUtils/psHash.h
r889 r919 10 10 * @author George Gusciora, MHPCC 11 11 * 12 * @version $Revision: 1. 7$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-06-0 7 00:32:53$12 * @version $Revision: 1.8 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-06-08 19:08:40 $ 14 14 * 15 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 23 23 * \ingroup DataGroup 24 24 */ 25 #include "ps Dlist.h"25 #include "psList.h" 26 26 27 27 … … 78 78 79 79 /// List all keys in table. 80 ps Dlist *psHashKeyList(psHash *table);80 psList *psHashKeyList(psHash *table); 81 81 82 82 /* \} */ // End of DataGroup Functions
Note:
See TracChangeset
for help on using the changeset viewer.
