Index: /trunk/doc/pslib/ChangeLogSDRS.tex
===================================================================
--- /trunk/doc/pslib/ChangeLogSDRS.tex	(revision 4075)
+++ /trunk/doc/pslib/ChangeLogSDRS.tex	(revision 4076)
@@ -1,3 +1,3 @@
-%%% $Id: ChangeLogSDRS.tex,v 1.115 2005-06-01 21:26:34 jhoblitt Exp $
+%%% $Id: ChangeLogSDRS.tex,v 1.116 2005-06-01 21:34:13 jhoblitt Exp $
 
 \subsection{Changes from version 00 to version 01}
@@ -655,4 +655,8 @@
   \item change \code{psVector} to store it's number of elements as an \code{unsigned long int}
   \item change \code{psArray} to store it's number of elements as an \code{unsigned long int}
+  \item change \code{psList} to store it's number of elements as an \code{unsigned long int}
+  \item change \code{psListIterator} to store the number of elements on the list as an \code{unsigned long int}
+  \item change \code{psListIterator} to store it's index as an \code{long int}
+  \item change \code{psHash} to store it's number of elements as an \code{unsigned long int}
   \item remove \code{lock} from \code{psList}
 \end{itemize}
Index: /trunk/doc/pslib/psLibSDRS.tex
===================================================================
--- /trunk/doc/pslib/psLibSDRS.tex	(revision 4075)
+++ /trunk/doc/pslib/psLibSDRS.tex	(revision 4076)
@@ -1,3 +1,3 @@
-%%% $Id: psLibSDRS.tex,v 1.250 2005-06-01 21:24:21 jhoblitt Exp $
+%%% $Id: psLibSDRS.tex,v 1.251 2005-06-01 21:34:13 jhoblitt Exp $
 \documentclass[panstarrs,spec]{panstarrs}
 
@@ -1630,5 +1630,5 @@
 \begin{datatype}
 typedef struct {
-   unsigned int n;                     ///< number of elements on list
+   unsigned long int n;                ///< number of elements on list
    psListElem *head;                   ///< first element on list (may be NULL)
    psListElem *tail;                   ///< last element on list (may be NULL)
@@ -1685,5 +1685,5 @@
     psListElem *cursor;                ///< The current iterator cursor
     bool offEnd;                       ///< Is the iterator off the end?
-    int index;                         ///< Index of iterator, to assist performance
+    long int index;                    ///< Index of iterator, to assist performance
     bool mutable;                      ///< Is it permissible to modify the list?
 } psListIterator;
@@ -1703,5 +1703,5 @@
 The corresponding constructor shall be:
 \begin{prototype}
-psListIterator *psListIteratorAlloc(const psList *list, int location, bool mutable);
+psListIterator *psListIteratorAlloc(const psList *list, long int location, bool mutable);
 \end{prototype}
 Here, \code{list} is the \code{psList} on which the iterator will
@@ -1731,5 +1731,5 @@
 
 \begin{prototype}
-bool psListAdd(psList *list, int location, psPtr data);
+bool psListAdd(psList *list, long int location, psPtr data);
 bool psListAddAfter(psListIterator *iterator, psPtr data);
 bool psListAddBefore(psListIterator *iterator, psPtr data);
@@ -1749,5 +1749,5 @@
 
 \begin{prototype}
-psPtr psListGet(psList *list, int location);
+psPtr psListGet(psList *list, long int location);
 psPtr psListGetAndIncrement(psListIterator *iterator);
 psPtr psListGetAndDecrement(psListIterator *iterator);
@@ -1779,5 +1779,5 @@
 
 \begin{prototype}
-bool psListRemove(psList *list, int location)
+bool psListRemove(psList *list, long int location)
 bool psListRemoveData(psList *list, psPtr data);
 \end{prototype}
@@ -1840,5 +1840,5 @@
 \begin{datatype}
 typedef struct {
-    int n;                              ///< number of buckets
+    unsigned long int n;                ///< number of buckets
     psHashBucket **buckets;             ///< the buckets themselves
 } psHash;
@@ -1862,5 +1862,5 @@
 A hash table is created with the following function:
 \begin{prototype}
-psHash *psHashAlloc(psU32 nalloc);
+psHash *psHashAlloc(unsigned long int nalloc);
 \end{prototype}
 which allocates the space for the hash table, creating and
