IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4070


Ignore:
Timestamp:
Jun 1, 2005, 11:04:33 AM (21 years ago)
Author:
jhoblitt
Message:

remove lock from psList

Location:
trunk/doc/pslib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/pslib/ChangeLogSDRS.tex

    r4068 r4070  
    1 %%% $Id: ChangeLogSDRS.tex,v 1.111 2005-06-01 04:30:57 jhoblitt Exp $
     1%%% $Id: ChangeLogSDRS.tex,v 1.112 2005-06-01 21:04:33 jhoblitt Exp $
    22
    33\subsection{Changes from version 00 to version 01}
     
    653653\item change \code{psVector} to store it's number of elements as an \code{unsigned long int}
    654654\item change \code{psArray} to store it's number of elements as an \code{unsigned long int}
    655 \end{itemize}
     655\item remove \code{lock} from \code{psList}
     656\end{itemize}
  • trunk/doc/pslib/psLibSDRS.tex

    r4068 r4070  
    1 %%% $Id: psLibSDRS.tex,v 1.245 2005-06-01 04:30:57 jhoblitt Exp $
     1%%% $Id: psLibSDRS.tex,v 1.246 2005-06-01 21:04:33 jhoblitt Exp $
    22\documentclass[panstarrs,spec]{panstarrs}
    33
     
    16341634   psListElem *tail;                   ///< last element on list (may be NULL)
    16351635   psArray *iterators;                 ///< array of psListIterator: iteration cursors
    1636    pthread_mutex_t lock;               ///< mutex to lock a node during changes
    16371636} psList;
    16381637\end{datatype}
     
    16421641pointer to the last element in the list (\code{tail}), an array of
    16431642iteration cursors, (\code{iterators}), and an entry to define the
    1644 number of elements in the list (\code{size}).  The \code{lock} should
    1645 be applied during changes to the list to maintain thread safety.
     1643number of elements in the list (\code{size}).
    16461644
    16471645The elements of the list are defined by the type \code{psListElem}:
Note: See TracChangeset for help on using the changeset viewer.