IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 919


Ignore:
Timestamp:
Jun 8, 2004, 9:08:40 AM (22 years ago)
Author:
desonia
Message:

changed psDlist to be psList

Location:
trunk/psLib/src
Files:
4 added
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/collections/Makefile

    r874 r919  
    33##  Makefile:   collections
    44##
    5 ##  $Revision: 1.18 $  $Name: not supported by cvs2svn $
    6 ##  $Date: 2004-06-04 23:44:36 $
     5##  $Revision: 1.19 $  $Name: not supported by cvs2svn $
     6##  $Date: 2004-06-08 19:08:40 $
    77##
    88##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3434           psSort.o \
    3535           psImage.o \
    36            psDlist.o
     36           psList.o
    3737
    3838# Define PHONY target "all" which will make all the necessary items
  • trunk/psLib/src/pslib.h

    r874 r919  
    88 *  @author Eric Van Alst, MHPCC
    99 *   
    10  *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2004-06-04 23:45:22 $
     10 *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2004-06-08 19:08:40 $
    1212 *
    1313 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3636#include "psSort.h"
    3737#include "psHash.h"
    38 #include "psDlist.h"
     38#include "psList.h"
    3939
    4040// Data Manipulation
  • trunk/psLib/src/sysUtils/psHash.c

    r889 r919  
    1010 *  @author George Gusciora, MHPCC
    1111 *   
    12  *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-06-07 00:32:53 $
     12 *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-06-08 19:08:40 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2525#include "psAbort.h"
    2626
    27 psDlist *psHashKeyList(psHash *table)
     27psList *psHashKeyList(psHash *table)
    2828{
    2929    int i = 0;
    30     psDlist *myLinkList = NULL;
     30    psList *myLinkList = NULL;
    3131
    3232    if (table == NULL) {
     
    3434    }
    3535
    36     myLinkList = psDlistAlloc(NULL);
     36    myLinkList = psListAlloc(NULL);
    3737
    3838    for (i=0;i<table->nbucket;i++) {
    3939        if (table->buckets[i] != NULL) {
    40             psDlistAdd(myLinkList, (table->buckets[i])->key, PS_DLIST_HEAD);
     40            psListAdd(myLinkList, (table->buckets[i])->key, PS_LIST_HEAD);
    4141        }
    4242    }
  • trunk/psLib/src/sysUtils/psHash.h

    r889 r919  
    1010 *  @author George Gusciora, MHPCC
    1111 *   
    12  *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-06-07 00:32:53 $
     12 *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-06-08 19:08:40 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2323 *  \ingroup DataGroup
    2424 */
    25 #include "psDlist.h"
     25#include "psList.h"
    2626
    2727
     
    7878
    7979/// List all keys in table.
    80 psDlist *psHashKeyList(psHash *table);
     80psList *psHashKeyList(psHash *table);
    8181
    8282/* \} */ // End of DataGroup Functions
Note: See TracChangeset for help on using the changeset viewer.