You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by bl...@apache.org on 2003/04/10 06:52:22 UTC

cvs commit: avalon-excalibur/thread/src/java/org/apache/avalon/excalibur/thread/impl BasicThreadPool.java

bloritsch    2003/04/09 21:52:22

  Modified:    thread/src/java/org/apache/avalon/excalibur/thread/impl
                        BasicThreadPool.java
  Log:
  it turns out that the interrupt() call was supposed to be interrupted() which does nothing but return a boolean we aren't using
  
  Revision  Changes    Path
  1.12      +1 -1      avalon-excalibur/thread/src/java/org/apache/avalon/excalibur/thread/impl/BasicThreadPool.java
  
  Index: BasicThreadPool.java
  ===================================================================
  RCS file: /home/cvs/avalon-excalibur/thread/src/java/org/apache/avalon/excalibur/thread/impl/BasicThreadPool.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- BasicThreadPool.java	29 Mar 2003 18:53:26 -0000	1.11
  +++ BasicThreadPool.java	10 Apr 2003 04:52:22 -0000	1.12
  @@ -224,7 +224,7 @@
        */
       protected void releaseWorker( final WorkerThread worker )
       {
  -        worker.interrupt();
  +        worker.interrupted();
           m_pool.put( (SimpleWorkerThread)worker );
       }
   }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org
For additional commands, e-mail: cvs-help@avalon.apache.org