dgaudet     98/09/22 09:27:38

  Modified:    nsprpub/pr/include prthread.h
  Log:
  merge up to MOZILLA cvs19980922 tag
  
  Revision  Changes    Path
  1.3       +5 -5      apache-2.0/nsprpub/pr/include/prthread.h
  
  Index: prthread.h
  ===================================================================
  RCS file: /export/home/cvs/apache-2.0/nsprpub/pr/include/prthread.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- prthread.h        1998/09/05 16:54:15     1.2
  +++ prthread.h        1998/09/22 16:27:38     1.3
  @@ -185,19 +185,19 @@
   
   /*
   ** Define some per-thread-private data.
  -**     "index" is an index into the per-thread private data table
  +**     "tpdIndex" is an index into the per-thread private data table
   **     "priv" is the per-thread-private data 
   **
   ** If the per-thread private data table has a previously registered
   ** destructor function and a non-NULL per-thread-private data value,
   ** the destructor function is invoked.
   **
  -** This can return PR_FAILURE if index is invalid.
  +** This can return PR_FAILURE if the index is invalid.
   */
  -PR_EXTERN(PRStatus) PR_SetThreadPrivate(PRUintn indexx, void *priv);
  +PR_EXTERN(PRStatus) PR_SetThreadPrivate(PRUintn tpdIndex, void *priv);
   
   /*
  -** Recover the per-thread-private data for the current thread. "index" is
  +** Recover the per-thread-private data for the current thread. "tpdIndex" is
   ** the index into the per-thread private data table. 
   **
   ** The returned value may be NULL which is indistinguishable from an error 
  @@ -205,7 +205,7 @@
   **
   ** A thread can only get access to its own thread-specific-data.
   */
  -PR_EXTERN(void*) PR_GetThreadPrivate(PRUintn indexx);
  +PR_EXTERN(void*) PR_GetThreadPrivate(PRUintn tpdIndex);
   
   /*
   ** This routine sets the interrupt request for a target thread. The interrupt
  
  
  

Reply via email to